Skip to content

Commit 1ef8fa3

Browse files
committed
Attempt to upload macOS assets to release
1 parent 2e63a0b commit 1ef8fa3

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

.github/workflows/deploy-tauri.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,23 @@ jobs:
9393
- name: Build macOS app
9494
run: |
9595
pnpm tauri build --verbose --target ${{ matrix.tauri-target }}
96+
- name: Release
97+
uses: softprops/action-gh-release@v2
98+
with:
99+
draft: true
100+
files: |
101+
./src-tauri/target/aarch64-apple-darwin/release/bundle/dmg/*.dmg
102+
./src-tauri/target/aarch64-apple-darwin/release/bundle/macos/*.app
103+
./src-tauri/target/aarch64-apple-darwin/release/bundle/macos/*.tar.gz
104+
./src-tauri/target/aarch64-apple-darwin/release/bundle/macos/*.tar.gz.sig
105+
./src-tauri/target/x86_64-apple-darwin/release/bundle/dmg/*.dmg
106+
./src-tauri/target/x86_64-apple-darwin/release/bundle/macos/*.app
107+
./src-tauri/target/x86_64-apple-darwin/release/bundle/macos/*.tar.gz
108+
./src-tauri/target/x86_64-apple-darwin/release/bundle/macos/*.tar.gz.sig
109+
make_latest: true
110+
name: App v0.0.1-alpha
111+
tag_name: app-v0.0.1-alpha
112+
target_commitish: ${{ github.sha }}
96113
build-desktop-windows:
97114
runs-on: windows-latest
98115
steps:
@@ -193,4 +210,4 @@ jobs:
193210
- build-mobile-android
194211
- build-mobile-ios
195212
steps:
196-
- run: echo "Release"
213+
- run: echo 'Release'

0 commit comments

Comments
 (0)