Build release zip #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build release zip | |
on: | |
workflow_dispatch | |
jobs: | |
build: | |
name: Build release zip | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build plugin # Remove or modify this step as needed | |
run: | | |
composer install --no-dev | |
npm install | |
npm run build | |
- name: Generate zip | |
uses: 10up/action-wordpress-plugin-build-zip@stable | |
with: | |
retention-days: 5 # Optional; defaults to 5 |