mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-21 07:41:46 -05:00
Merge pull request #2323 from srcejon/win_code_sign
Windows Signing: Fix output-artifact-directory and unzip file.
This commit is contained in:
commit
d52179dbe2
9
.github/workflows/windows.yml
vendored
9
.github/workflows/windows.yml
vendored
@ -102,10 +102,15 @@ jobs:
|
||||
signing-policy-slug: 'test-signing'
|
||||
github-artifact-id: '${{ steps.upload-unsigned-artifact.outputs.artifact-id }}'
|
||||
wait-for-completion: true
|
||||
output-artifact-directory: '${{ github.workspace }}/build/sdrangel-${{ steps.get_version.outputs.version }}-win64-signed.exe'
|
||||
output-artifact-directory: '${{ github.workspace }}\build\signed'
|
||||
- name: Unzip signed artifact
|
||||
run: |
|
||||
dir ${{ github.workspace }}\build\signed
|
||||
cd ${{ github.workspace }}\build\signed
|
||||
7z x sdrangel-${{ steps.get_version.outputs.version }}-win64.exe.zip
|
||||
- name: Upload signed artifact
|
||||
id: upload-signed-artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: sdrangel-${{ steps.get_version.outputs.version }}-win64-signed.exe
|
||||
path: ${{ github.workspace }}/build/sdrangel-${{ steps.get_version.outputs.version }}-win64-signed.exe
|
||||
path: ${{ github.workspace }}/build/signed/sdrangel-${{ steps.get_version.outputs.version }}-win64.exe
|
||||
|
Loading…
Reference in New Issue
Block a user