File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,14 @@ jobs:
14
14
fail-fast : false
15
15
matrix :
16
16
include :
17
- - platform : ' ubuntu-22.04'
17
+ - platform : ' macos-latest' # for Arm based macs (M1 and above).
18
+ args : ' --target aarch64-apple-darwin'
19
+ - platform : ' macos-latest' # for Intel based macs.
20
+ args : ' --target x86_64-apple-darwin'
21
+ - platform : ' ubuntu-22.04' # for Tauri v1 you could replace this with ubuntu-20.04.
22
+ args : ' '
23
+ - platform : ' windows-latest'
18
24
args : ' '
19
- # - platform: 'windows-latest'
20
- # args: ''
21
25
22
26
runs-on : ${{ matrix.platform }}
23
27
environment : PROD
51
55
cat CHANGELOG.md
52
56
cat CHANGELOG.md >> $GITHUB_ENV
53
57
echo "EOF" >> $GITHUB_ENV
54
- echo ${{ env.RELEASE_BODY }}
55
58
56
59
- uses : tauri-apps/tauri-action@v0
57
60
env :
62
65
tagName : app-v__VERSION__
63
66
releaseName : ' App v__VERSION__'
64
67
releaseBody : ${{ env.RELEASE_BODY }} # Use the changelog content as the release body
68
+ releaseId : ${{github.ref_name}}
65
69
releaseDraft : true
66
70
prerelease : false
67
71
args : ${{ matrix.args }}
You can’t perform that action at this time.
0 commit comments