Zip chrome-extension for publishing and manual loading 馃搧 #10
This file contains hidden or 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 Chrome Extension | |
| run-name: Zip chrome-extension for publishing and manual loading 馃搧 | |
| on: | |
| workflow_run: | |
| workflows: ['Minify Calendarize Script'] | |
| types: [completed] | |
| push: | |
| paths: | |
| - 'chrome-extension/**' | |
| jobs: | |
| Zip-Chrome-Extension: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| ref: ${{ github.head_ref }} | |
| - name: Zip Chrome Extension | |
| run: (cd chrome-extension && zip -FSr ../calendarize-webreg-chrome.zip *) | |
| - name: Committing zip file | |
| uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| commit_message: 'GitHub Action: Zip & add calendarize-webreg-chrome.zip' |