We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 422fd76 commit 03efc4dCopy full SHA for 03efc4d
.github/workflows/hello.yml
@@ -0,0 +1,10 @@
1
+name: Hello
2
+
3
+on: [push]
4
5
+jobs:
6
+ say-hello:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Say hello
10
+ run: echo "hello"
.github/workflows/secret.yml
@@ -0,0 +1,13 @@
+name: Use Secret Token
+ build:
+ - name: Checkout code
+ uses: actions/checkout@v4
+ - name: Use secret in env
11
+ run: echo "The secret is $MY_SECRET_TOKEN"
12
+ env:
13
+ MY_SECRET_TOKEN: ${{ secrets.MY_SECRET_TOKEN }}
0 commit comments