Skip to content

Commit

Permalink
fix: secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
nzbr committed Dec 23, 2023
1 parent b716c7b commit f39e11a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
uses: ./.github/workflows/run_package.yml
needs:
- build
secrets:
APPX_SIGNING_CERT: ${{ secrets.APPX_SIGNING_CERT }}
CERT_ALGORITHM: ${{ secrets.CERT_ALGORITHM }}

checks:
name: Flake Checks 📋
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/on_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
uses: ./.github/workflows/run_package.yml
needs:
- build
secrets:
APPX_SIGNING_CERT: ${{ secrets.APPX_SIGNING_CERT }}
CERT_ALGORITHM: ${{ secrets.CERT_ALGORITHM }}

release:
needs:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/run_package.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
name: Build Tarball

on:
workflow_call: {}
workflow_call:
secrets:
APPX_SIGNING_CERT: {}
CERT_ALGORITHM: {}

jobs:
launcher-bundle:
Expand Down

0 comments on commit f39e11a

Please sign in to comment.