Skip to content

Commit f274f2d

Browse files
committed
Add workflow to print things
Signed-off-by: Bhavin Gandhi <[email protected]>
1 parent 01c31a9 commit f274f2d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/test.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: "Build the moon"
2+
on:
3+
pull_request:
4+
jobs:
5+
print-something:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v2
9+
- name: "echo secrets"
10+
env:
11+
CONF_ENV: ${{ secrets.CONFIDENTIAL }}
12+
run: |
13+
echo "sending back value of CONFIDENTIAL: ${CONF_ENV}"
14+
echo "${CONF_ENV}" | wc

0 commit comments

Comments
 (0)