Bump braces from 3.0.2 to 3.0.3 (#13) #18
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: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build release zip | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build | |
run: npm run build-plugin | |
- name: Unzip # GH currently always zips, so if we upload a zip we get a zip inside a zip | |
run: unzip icepay-for-woocommerce.zip -d dist | |
- name: Upload the ZIP file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: icepay-for-woocommerce | |
path: dist/ | |
retention-days: 5 |