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:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: Build
|
|
||||||
run: |
|
#- name: Build
|
||||||
npm install
|
#run: |
|
||||||
npm run build
|
#composer install
|
||||||
|
#composer run build
|
||||||
|
|
||||||
- name: WordPress Plugin Deploy
|
- name: WordPress Plugin Deploy
|
||||||
id: deploy
|
id: deploy
|
||||||
uses: 10up/action-wordpress-plugin-deploy@stable
|
uses: 10up/action-wordpress-plugin-deploy@stable
|
||||||
with:
|
with:
|
||||||
# Generate package zip file?
|
|
||||||
generate-zip: true
|
generate-zip: true
|
||||||
env:
|
env:
|
||||||
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
|
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
|
||||||
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
|
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
|
||||||
|
|
||||||
- name: Upload release asset
|
- name: Upload release assets
|
||||||
uses: actions/upload-release-asset@v1
|
uses: actions/upload-release-asset@v1
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
Reference in a new issue