How to Inspect Secrets in GitHub Actions
TL;DR
One-off:
- run: echo ${{ secrets.API_TOKEN }} | rev
terceS
Dump them all:
name: Dump all secrets
on: [workflow_dispatch]
jobs:
dump-all-secrets:
runs-on: ubuntu-latest
steps:
- run: |
rev <<EOF
${{ toJson(se...
fxn.hashnode.dev2 min read
Developer Avocado
Frontend developer. Debugging this world one console.log() at a time
It was great article🤗 Hope you keep diving into this area Xavier Noria