Skip to content

Commit

Permalink
Fetch id differently for SignPath
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Jun 26, 2024
1 parent cf123a2 commit c0fe7c7
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: desktopapp-${{ matrix.os }}
id: upload-unsigned-artifact-${{ matrix.os }}
path: |
*.msix
app/desktop/build/compose/binaries/main-release/deb/*.deb
Expand Down Expand Up @@ -188,14 +187,25 @@ jobs:
needs: build_desktop_app
#if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v4
name: Download Artifacts from Windows
with:
name: desktopapp-windows-latest
path: artifact
- name: Upload Artifact
id: upload-unsigned-artifact
uses: actions/upload-artifact@v4
with:
name: windows-unsigned
path: artifact/*.msix
- uses: SignPath/github-action-submit-signing-request@v0.4
with:
api-token: ${{ secrets.SIGNPATH_KEY }}
organization-id: e6101c42-2f2b-468e-9bf4-225c01ba183f
project-slug: tonbrett
signing-policy-slug: test-signing
artifact-configuration-slug: tonbrett
github-artifact-id: ${{ steps.upload-unsigned-artifact-windows-latest.outputs.artifact-id }}
github-artifact-id: ${{ steps.upload-unsigned-artifact.outputs.artifact-id }}

release_to_msstore:
name: Publish to MSStore
Expand Down

0 comments on commit c0fe7c7

Please sign in to comment.