From 52c1901ebab8a9f0719bd815c8e66eebafcaddfa Mon Sep 17 00:00:00 2001 From: eyedeekay Date: Fri, 5 Apr 2024 14:55:41 -0400 Subject: [PATCH] fix secret access to sign.yml --- .github/workflows/sign.yml | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/.github/workflows/sign.yml b/.github/workflows/sign.yml index 3aaa84e38..9b1755c33 100644 --- a/.github/workflows/sign.yml +++ b/.github/workflows/sign.yml @@ -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 @@ -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