fixed bug #3
Workflow file for this run
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: Release Chrome Extension | |
| on: | |
| push: | |
| tags: | |
| - 'v*' # Triggers only when you push a tag starting with v (e.g. v1.0, v1.1) | |
| permissions: | |
| contents: write # Required to create the release | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Create Zip File | |
| run: | | |
| # Zip everything except hidden git files and the github folder itself | |
| zip -r price-actually-bdt.zip . -x "*.git*" "*.github*" "*.DS_Store" | |
| - name: Create GitHub Release | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| files: price-actually-bdt.zip | |
| generate_release_notes: true # Auto-generates notes from your commit messages |