Skip to content

Commit

Permalink
ci: update signpath action
Browse files Browse the repository at this point in the history
  • Loading branch information
NGPixel committed Sep 11, 2024
1 parent db30acf commit 9027af5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,20 +147,21 @@ jobs:
npx quasar build -m electron -T ${{ matrix.platform }} --arch ${{ matrix.arch }} -P never
- name: Upload Build Artifact
id: artifactupload
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.platform }}-${{ matrix.arch }}-build
path: "dist/electron/Packaged/*.${{ matrix.ext }}"

- id: signpath
if: ${{ matrix.platform == 'win32' && matrix.arch == 'x64' }}
uses: signpath/github-action-submit-signing-request@v0.3
uses: signpath/github-action-submit-signing-request@v1
with:
api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
organization-id: '${{ secrets.SIGNPATH_ORG_ID }}'
project-slug: 'editor'
signing-policy-slug: 'test-signing'
github-artifact-name: ${{ matrix.platform }}-${{ matrix.arch }}-build
github-artifact-id: '${{ steps.artifactupload.outputs.artifact-id }}'
wait-for-completion: true
output-artifact-directory: signed-build

Expand Down

0 comments on commit 9027af5

Please sign in to comment.