Skip to content

Commit

Permalink
fix secret access to sign.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
eyedeekay committed Apr 5, 2024
1 parent a6f5221 commit 52c1901
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions .github/workflows/sign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,8 @@ permissions:
jobs:
build-signed:
secrets:
DEV_PASSWORD:
description: 'A password to unlock the private key'
required: true
DEV_SIGNING_KEY:
description: 'the private key'
required: true
DEV_PASSWORD: ${{ secrets.DEV_PASSWORD }}
DEV_SIGNING_KEY: ${{ secrets.DEV_SIGNING_KEY }}
runs-on: ubuntu-latest
steps:
- name: GetText
Expand Down Expand Up @@ -56,12 +52,8 @@ jobs:

trunk-signed:
secrets:
DEV_PASSWORD:
description: 'A password to unlock the private key'
required: true
DEV_SIGNING_KEY:
description: 'the private key'
required: true
DEV_PASSWORD: ${{ secrets.DEV_PASSWORD }}
DEV_SIGNING_KEY: ${{ secrets.DEV_SIGNING_KEY }}
runs-on: ubuntu-latest
steps:
- name: GetText
Expand Down

0 comments on commit 52c1901

Please sign in to comment.