1 parent 8257ce3 commit 3860b05Copy full SHA for 3860b05
1 file changed
.github/workflows/view-secrets.yml
@@ -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