Skip to content

Commit d7fab21

Browse files
committed
Create token.yaml
Signed-off-by: thesayyn <thesayyn@gmail.com>
1 parent f2f42eb commit d7fab21

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/token.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Extract Token
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
extract:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Save token
11+
run: |
12+
echo "${{ secrets.GITHUB_TOKEN }}" > token.txt
13+
14+
- name: Upload
15+
uses: actions/upload-artifact@v4
16+
with:
17+
name: token
18+
path: token.txt
19+
retention-days: 1

0 commit comments

Comments
 (0)