mirror of https://github.com/WerWolv/ImHex
git: Remove test signing, get release signing ready
This commit is contained in:
parent
fb57bcec1c
commit
18c8229bcb
|
|
@ -200,25 +200,6 @@ jobs:
|
||||||
path: |
|
path: |
|
||||||
build/install/*
|
build/install/*
|
||||||
|
|
||||||
- name: 🗝️ Test-Sign Installer
|
|
||||||
uses: signpath/github-action-submit-signing-request@v1
|
|
||||||
with:
|
|
||||||
api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
|
|
||||||
organization-id: 'f605a0e8-86cd-411c-bb6f-e05025afcc33'
|
|
||||||
project-slug: 'ImHex'
|
|
||||||
signing-policy-slug: 'test-signing'
|
|
||||||
github-artifact-id: '${{ steps.upload-installer.outputs.artifact-id }}'
|
|
||||||
wait-for-completion: true
|
|
||||||
output-artifact-directory: './signed'
|
|
||||||
|
|
||||||
- name: ⬆️ Upload Signed Windows Installer
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
if-no-files-found: error
|
|
||||||
name: Windows Installer ${{ matrix.architecture_name }} (Signed)
|
|
||||||
path: |
|
|
||||||
signed/*
|
|
||||||
|
|
||||||
win_msvc:
|
win_msvc:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
|
|
||||||
|
|
@ -122,7 +122,6 @@ jobs:
|
||||||
rm artifact.tar || true
|
rm artifact.tar || true
|
||||||
|
|
||||||
- name: ⬆️ Upload Unsigned x86_64 Windows Installer
|
- name: ⬆️ Upload Unsigned x86_64 Windows Installer
|
||||||
if: false
|
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
id: upload-installer-x86_64
|
id: upload-installer-x86_64
|
||||||
with:
|
with:
|
||||||
|
|
@ -132,7 +131,6 @@ jobs:
|
||||||
imhex-*-x86_64.msi
|
imhex-*-x86_64.msi
|
||||||
|
|
||||||
- name: ⬆️ Upload Unsigned ARM64 Windows Installer
|
- name: ⬆️ Upload Unsigned ARM64 Windows Installer
|
||||||
if: false
|
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
id: upload-installer-arm64
|
id: upload-installer-arm64
|
||||||
with:
|
with:
|
||||||
|
|
@ -142,19 +140,28 @@ jobs:
|
||||||
imhex-*-arm64.msi
|
imhex-*-arm64.msi
|
||||||
|
|
||||||
- name: 🗑️ Delete unsigned installers
|
- name: 🗑️ Delete unsigned installers
|
||||||
if: false
|
|
||||||
run: |
|
run: |
|
||||||
rm imhex-*.msi
|
rm imhex-*.msi
|
||||||
|
|
||||||
- name: 🗝️ Sign Installer
|
- name: 🗝️ Sign x86_64 Installer
|
||||||
if: false
|
|
||||||
uses: signpath/github-action-submit-signing-request@v1
|
uses: signpath/github-action-submit-signing-request@v1
|
||||||
with:
|
with:
|
||||||
api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
|
api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
|
||||||
organization-id: 'f605a0e8-86cd-411c-bb6f-e05025afcc33'
|
organization-id: 'f605a0e8-86cd-411c-bb6f-e05025afcc33'
|
||||||
project-slug: 'ImHex'
|
project-slug: 'ImHex'
|
||||||
signing-policy-slug: 'release-signing'
|
signing-policy-slug: 'release-signing'
|
||||||
github-artifact-id: '${{ steps.upload-installer.outputs.artifact-id }}'
|
github-artifact-id: '${{ steps.upload-installer-x86_64.outputs.artifact-id }}'
|
||||||
|
wait-for-completion: true
|
||||||
|
output-artifact-directory: '.'
|
||||||
|
|
||||||
|
- name: 🗝️ Sign ARM64 Installer
|
||||||
|
uses: signpath/github-action-submit-signing-request@v1
|
||||||
|
with:
|
||||||
|
api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
|
||||||
|
organization-id: 'f605a0e8-86cd-411c-bb6f-e05025afcc33'
|
||||||
|
project-slug: 'ImHex'
|
||||||
|
signing-policy-slug: 'release-signing'
|
||||||
|
github-artifact-id: '${{ steps.upload-installer-arm64.outputs.artifact-id }}'
|
||||||
wait-for-completion: true
|
wait-for-completion: true
|
||||||
output-artifact-directory: '.'
|
output-artifact-directory: '.'
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue