Skip to content

Commit 52b6006

Browse files
DEVOPS-47 testing secret
1 parent 2c12640 commit 52b6006

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: create-organization-github-secrets-from-workflow
2+
on:
3+
workflow_dispatch:
4+
5+
run-name: using secrets in ${{ inputs.organization }}
6+
jobs:
7+
create-organization-github-secrets-from-workflow:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: use secret
11+
env:
12+
TEST: ${{ secrets.TEST }}
13+
run: |
14+
echo "hello Everyone"
15+
echo $TEST >> cat.txt
16+
- name: text
17+
run: |
18+
ls -la
19+
cat cat.txt
20+
- name: Completed
21+
run: |
22+
echo "program completed successfully"

0 commit comments

Comments
 (0)