Handle Release #32
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
| on: | |
| push: | |
| tags: | |
| - '*' | |
| name: Handle Release | |
| jobs: | |
| generate-installer: | |
| name: Create release-artifacts | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Create zip file for manual installation | |
| uses: vimtor/action-zip@v1.2 | |
| with: | |
| files: GridfinityGenerator.manifest GridfinityGenerator.py config.py LICENSE.md lib/ commands/ documentation/PRIVACY_POLICY.md | |
| recursive: false | |
| dest: dist/GridfinityGenerator-${{ github.ref_name }}.zip | |
| - name: Upload the artifacts | |
| uses: svenstaro/upload-release-action@v2 | |
| with: | |
| repo_token: ${{ secrets.GITHUB_TOKEN }} | |
| file: dist/* | |
| file_glob: true | |
| tag: ${{ github.ref }} | |
| body: TBD | |
| prerelease: true |