Skip to content

Commit 3ebb90a

Browse files
committed
Add workflow to print things
Signed-off-by: Bhavin Gandhi <bhavin7392@gmail.com>
1 parent 01c31a9 commit 3ebb90a

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/test.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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}"

0 commit comments

Comments
 (0)