Skip to content

Commit

Permalink
fix missing vendor (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
rtio authored Dec 12, 2024
1 parent 999dab1 commit 37b33bb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Build
run: composer install --no-dev --optimize-autoloader
# 10up/action-wordpress-plugin-deploy is not adding the vendor folder due to .gitignore so we need to add it manually
run: |
composer install --no-dev --optimize-autoloader
git add -f vendor && git commit -m "Add vendor folder"
- name: WordPress Plugin Deploy
uses: 10up/action-wordpress-plugin-deploy@stable
with:
Expand Down

0 comments on commit 37b33bb

Please sign in to comment.