We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fbf2a2 commit 277bc46Copy full SHA for 277bc46
1 file changed
.github/workflows/build.yml
@@ -51,9 +51,18 @@ jobs:
51
- name: Install frontend dependencies
52
run: pnpm install --frozen-lockfile
53
54
+ - name: Rust target (macOS universal)
55
+ if: matrix.platform == 'macos-latest'
56
+ run: rustup target add aarch64-apple-darwin x86_64-apple-darwin
57
+
58
- name: Build the app
59
uses: tauri-apps/tauri-action@v0
60
env:
61
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
62
with:
63
+ tagName: ${{ github.ref_name }}
64
+ releaseName: 'gat ${{ github.ref_name }}'
65
+ releaseBody: 'See the assets to download and install this version.'
66
+ releaseDraft: true
67
+ prerelease: false
68
args: ${{ matrix.args }}
0 commit comments