We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d849bf commit afb208eCopy full SHA for afb208e
1 file changed
.github/workflows/test.yml
@@ -25,13 +25,15 @@ jobs:
25
- name: Checkout
26
uses: actions/checkout@v6
27
28
- - name: Decode Credentials to File
+ - name: Decode Credentials
29
+ id: creds
30
run: |
- 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
33
34
- name: Get GitHub App Token
35
id: auth
36
continue-on-error: true
37
uses: step-security/github-app-auth-action@release
38
with:
- creds: $(cat /tmp/app_creds.json)
39
+ creds: ${{ steps.creds.outputs.data }}
0 commit comments