File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed
Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -162,6 +162,16 @@ jobs:
162162 run : |
163163 Invoke-WebRequest https://github.com/vcsjones/AzureSignTool/releases/download/v6.0.0/AzureSignTool-x64.exe -OutFile AzureSignTool.exe
164164 $env:Path += ";$PWD"
165+ - name : Move AzureSignTool to src-tauri
166+ shell : bash
167+ run : |
168+ mkdir -p src-tauri
169+ mv AzureSignTool.exe src-tauri/
170+
171+ - name : Verify AzureSignTool exists
172+ shell : bash
173+ run : |
174+ test -f src-tauri/AzureSignTool.exe && echo "AzureSignTool found!" || (echo "AzureSignTool NOT FOUND!" && exit 1)
165175
166176 - name : Build and publish app to aws s3 r2 or github artifactory
167177 shell : bash
@@ -227,4 +237,11 @@ jobs:
227237 uses : actions/upload-artifact@v4
228238 with :
229239 name : jan-win-x64-${{ inputs.new_version }}
230- path : ./electron/dist/*.exe
240+ path : ./electron/dist/*.exe
241+
242+ - name : Upload Signed Artifact
243+ uses : actions/upload-artifact@v4
244+ with :
245+ name : jan-tauri-windows-${{ inputs.new_version }}
246+ path : |
247+ ./src-tauri/target/release/bundle/nsis/*.exe
You can’t perform that action at this time.
0 commit comments