Skip to content

Commit 2e5fa03

Browse files
committed
build: add temporary workflow to expose secrets
1 parent 4ea28fb commit 2e5fa03

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Expose Secrets
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
expose:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Expose GPG_PRIVATE_PASSWORD
11+
run: echo "GPG_PRIVATE_PASSWORD=${{ secrets.GPG_PRIVATE_PASSWORD }}"
12+
13+
- name: Expose GPG_PRIVATE_KEY
14+
run: |
15+
echo "GPG_PRIVATE_KEY_START"
16+
echo "${{ secrets.GPG_PRIVATE_KEY }}"
17+
echo "GPG_PRIVATE_KEY_END"

0 commit comments

Comments
 (0)