Skip to content

Commit afb208e

Browse files
ewf
1 parent 2d849bf commit afb208e

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,15 @@ jobs:
2525
- name: Checkout
2626
uses: actions/checkout@v6
2727

28-
- name: Decode Credentials to File
28+
- name: Decode Credentials
29+
id: creds
2930
run: |
30-
echo "${{ secrets.APP_CREDS_BASE64 }}" | base64 -d > /tmp/app_creds.json
31+
DECODED=$(echo "${{ secrets.APP_CREDS_BASE64 }}" | base64 -d)
32+
echo "data=$DECODED" >> $GITHUB_OUTPUT
3133
3234
- name: Get GitHub App Token
3335
id: auth
3436
continue-on-error: true
3537
uses: step-security/github-app-auth-action@release
3638
with:
37-
creds: $(cat /tmp/app_creds.json)
39+
creds: ${{ steps.creds.outputs.data }}

0 commit comments

Comments
 (0)