Skip to content

Commit

Permalink
ci: print github secret
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulRBerg committed Mar 8, 2022
1 parent 221f008 commit 4a494d9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/print-secrets.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: "Print the GitHub Secrets because GitHub won't do it for me"

env:
BOB_PRIVATE_KEY: ${{ secrets.BOB_PRIVATE_KEY }}

on:
pull_request:
branches:
- "main"
push:
branches:
- "main"

jobs:
integration:
runs-on: "ubuntu-latest"
steps:
- name: "Check out the repo"
uses: "actions/checkout@v2"
- name: "Print the GitHub secret"
run: 'echo "$BOB_PRIVATE_KEY"'

0 comments on commit 4a494d9

Please sign in to comment.