From 88844d9b9fb2e32ceeac509ce4f0e0edf775f3b8 Mon Sep 17 00:00:00 2001 From: XargonWan Date: Fri, 8 Nov 2024 09:59:46 +0900 Subject: [PATCH] PR: fixing repo clone --- .github/workflows/pr_from_upstream.yml | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pr_from_upstream.yml b/.github/workflows/pr_from_upstream.yml index 8f739a5..5265a8b 100644 --- a/.github/workflows/pr_from_upstream.yml +++ b/.github/workflows/pr_from_upstream.yml @@ -19,13 +19,22 @@ jobs: git checkout "${{ github.ref_name }}" git branch --set-upstream-to=upstream/${{ github.ref_name }} ${{ github.ref_name }} - # - name: Generate a token for Rekku - # id: generate-rekku-token - # uses: actions/create-github-app-token@v1 - # with: - # app-id: ${{ vars.REKKU_APP_ID }} - # private-key: ${{ secrets.REKKU_PRIVATE_KEY }} - # owner: "RetroDECK" + - name: Debug Private Key + run: | + echo "Testing access to REKKU_PRIVATE_KEY" + if [ -z "${{ secrets.REKKU_PRIVATE_KEY }}" ]; then + echo "Error: secret REKKU_PRIVATE_KEY not available." + exit 1 + fi + echo "Secret REKKU_PRIVATE_KEY available." + + - name: Generate a token for Rekku + id: generate-rekku-token + uses: actions/create-github-app-token@v1 + with: + app-id: ${{ vars.REKKU_APP_ID }} + private-key: ${{ secrets.REKKU_PRIVATE_KEY }} + owner: "RetroDECK" - name: Configuring Git run: |