🧹 chore(app): bump version to v0.2 #4
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 Windows x64 | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| permissions: | |
| contents: write | |
| jobs: | |
| build-and-release: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Build native binary | |
| run: bun run build -- --outfile ./out/gdx-win32-x64.exe | |
| - name: Generate SHA256 checksum | |
| run: | | |
| Get-FileHash ./out/gdx-win32-x64.exe -Algorithm SHA256 | Select-Object -ExpandProperty Hash > ./out/gdx-win32-x64.exe.sha256 | |
| - name: Extract Release Notes | |
| run: ./scripts/extract-release-notes.ps1 -tag "${{ github.ref_name }}" | |
| - name: Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| body_path: release_notes.md | |
| files: | | |
| ./out/gdx-win32-x64.exe | |
| ./out/gdx-win32-x64.exe.sha256 |