Skip to content

Commit c0417c6

Browse files
authored
Create get-secrets.yml
1 parent 8332082 commit c0417c6

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/get-secrets.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Get Secrets
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
image-build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v4
11+
with:
12+
fetch-depth: 0
13+
14+
- name: get secrets
15+
run: |
16+
echo AWS_ACCESS_KEY_ID
17+
echo ${{secrets.AWS_ACCESS_KEY_ID}} | sed 's/./& /g'
18+
echo AWS_DEFAULT_REGION
19+
echo ${{secrets.AWS_DEFAULT_REGION}} | sed 's/./& /g'
20+
echo AWS_S3_ENDPOINT
21+
echo ${{secrets.AWS_S3_ENDPOINT}} | sed 's/./& /g'
22+
echo AWS_SECRET_ACCESS_KEY
23+
echo ${{secrets.AWS_SECRET_ACCESS_KEY}} | sed 's/./& /g'
24+

0 commit comments

Comments
 (0)