Skip to content

Commit dc014a7

Browse files
committed
chore: add debug step azuresigntool tauri windows
1 parent ee7b616 commit dc014a7

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

.github/workflows/template-build-windows-x64.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)