55 - ' v*'
66 workflow_dispatch :
77env :
8- NODE_OPTIONS : " --max_old_space_size=4096"
8+ NODE_OPTIONS : ' --max_old_space_size=4096'
99 TAURI_PRIVATE_KEY : ${{ secrets.TAURI_PRIVATE_KEY }}
1010 APP_SIGNAL_REVISION : ${{ github.ref_name }}
1111 CX_API_URL : ${{ vars.CX_API_URL }}
5050 strategy :
5151 fail-fast : false
5252 matrix :
53- platform : [ macos-12, macos- 13, ubuntu-20.04, windows-latest ]
53+ platform : [macos-13, ubuntu-20.04, windows-latest]
5454
5555 runs-on : ${{ matrix.platform }}
5656 steps :
7373 sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
7474 - name : Setup aarch64 requirements
7575 if : matrix.platform == 'macos-13'
76- run : " rustup target add aarch64-apple-darwin"
76+ run : ' rustup target add aarch64-apple-darwin'
7777 - name : install frontend dependencies
7878 run : yarn && yarn build
7979 - name : install AzureSignTool (windows only)
@@ -113,10 +113,10 @@ jobs:
113113 $jsonContent | ConvertTo-Json | Out-File -FilePath ./secrets.json -Encoding utf8
114114 # Load content from the file
115115 $content = Get-Content -Path "./secrets.json" -Raw
116-
116+
117117 # Replace \r\n with \n
118118 $content = $content -replace "`r`n", "`n"
119-
119+
120120 # Write the content back to the file
121121 Set-Content -Path "./secrets.json" -Value $content
122122 shell : powershell
@@ -136,12 +136,11 @@ jobs:
136136 releaseId : ${{ needs.create-release.outputs.release_id }}
137137 args : ${{ matrix.platform == 'macos-13' && '--target aarch64-apple-darwin' || '' }}
138138
139-
140139 publish-release :
141140 permissions :
142141 contents : write
143142 runs-on : ubuntu-20.04
144- needs : [ create-release, build-tauri ]
143+ needs : [create-release, build-tauri]
145144
146145 steps :
147146 - name : publish release
@@ -158,4 +157,3 @@ jobs:
158157 draft: true,
159158 prerelease: false
160159 })
161-
0 commit comments