We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0793eab commit 111dc6bCopy full SHA for 111dc6b
.github/workflows/setting-environment-variables.yml
@@ -0,0 +1,18 @@
1
+name: This is a workflow to test env variables
2
+
3
+on:
4
+ workflow_dispatch
5
6
+jobs:
7
+ test:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
11
+ - name: Trying to add a value
12
+ run: |
13
+ echo "MY_NEW=hello" >> $GITHUB_ENV
14
15
+ - name: Printing that value
16
17
+ echo "the value stored in the file is $MY_NEW"
18
0 commit comments