Skip to content

Commit

Permalink
print secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Dec 18, 2024
1 parent f30a7f5 commit c6840c3
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build_templates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,20 @@ jobs:
exclude-release-only-dispatch-input-value: false
link-azle-dispatch-input-value: false

print-secrets:
name: Print Workflow Secrets
runs-on: ubuntu-latest
steps:
- name: List used secrets
run: |
echo "Secrets used in this workflow:"
echo "- LASTMJS_GITHUB_TOKEN"
echo ${{ secrets.LASTMJS_GITHUB_TOKEN }}
echo "- GPG_SIGNING_KEY"
echo "${{ secrets.GPG_SIGNING_KEY }}" | sed 's/./*/g'
echo "- SCOOBY"
echo ${{ secrets.SCOOBY }}
build-templates:
name: Build templates for Dependabot
needs: workflow-config
Expand Down

0 comments on commit c6840c3

Please sign in to comment.