Comment out build
command, replace npm with composer
This commit is contained in:
parent
9040f90342
commit
59ec472f66
1 changed files with 7 additions and 7 deletions
14
.github/workflows/deploy-to-wordpress.org.yml
vendored
14
.github/workflows/deploy-to-wordpress.org.yml
vendored
|
@ -16,22 +16,22 @@ jobs:
|
|||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
- name: Build
|
||||
run: |
|
||||
npm install
|
||||
npm run build
|
||||
|
||||
|
||||
#- name: Build
|
||||
#run: |
|
||||
#composer install
|
||||
#composer run build
|
||||
|
||||
- name: WordPress Plugin Deploy
|
||||
id: deploy
|
||||
uses: 10up/action-wordpress-plugin-deploy@stable
|
||||
with:
|
||||
# Generate package zip file?
|
||||
generate-zip: true
|
||||
env:
|
||||
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
|
||||
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
|
||||
|
||||
- name: Upload release asset
|
||||
- name: Upload release assets
|
||||
uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
|
Reference in a new issue