try with amended sknb #9
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: Zip and Upload Folder | |
on: | |
push: | |
branches: | |
- test-wordpress-playground # Change this to your default branch | |
jobs: | |
zip-and-upload: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Zip Folder | |
run: | | |
cd web/app/themes/ | |
zip -r twentytwentythree.zip twentytwentythree | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: twentytwentythree | |
path: web/app/themes/twentytwentythree.zip |