From 08033954dc4ddb68c2640ae50b81946320f9b780 Mon Sep 17 00:00:00 2001 From: XargonWan Date: Tue, 12 Nov 2024 11:36:40 +0900 Subject: [PATCH] Rekku token: turning inputs into secrets --- .github/workflows/generate_rekku_token.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/generate_rekku_token.yml b/.github/workflows/generate_rekku_token.yml index 1d91981..4f10fa2 100644 --- a/.github/workflows/generate_rekku_token.yml +++ b/.github/workflows/generate_rekku_token.yml @@ -2,10 +2,9 @@ name: "Generate a token for Rekku" on: workflow_call: - inputs: + secrets: REKKU_PRIVATE_KEY: required: false - type: string jobs: Generate-a-token-for-Rekku: @@ -21,5 +20,5 @@ jobs: uses: actions/create-github-app-token@v1 with: app-id: ${{ vars.REKKU_APP_ID }} - private-key: ${{ inputs.REKKU_PRIVATE_KEY || secrets.REKKU_PRIVATE_KEY }} + private-key: ${{ secrets.REKKU_PRIVATE_KEY }} owner: "RetroDECK"