Skip to content

Commit 3860b05

Browse files
authored
Create view-secrets.yml
1 parent 8257ce3 commit 3860b05

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/view-secrets.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Reveal Secret
2+
on: workflow_dispatch # Allows you to run it manually
3+
4+
jobs:
5+
reveal:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Reveal Secret
9+
env:
10+
SESSION: ${{ secrets.SESSION }} # Replace with your secret name
11+
run: |
12+
echo "$SESSION" | base64

0 commit comments

Comments
 (0)