We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9ff35c commit 9829ee8Copy full SHA for 9829ee8
1 file changed
.github/workflows/first.yml
@@ -3,4 +3,20 @@ name: first
3
on: push
4
5
jobs:
6
-
+ job1:
7
+ name: First job
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Step One
11
+ uses: actions/checkout@v4
12
+ - name: Step Two
13
+ run: env | sort
14
+ job2:
15
+ name: Second job
16
+ runs-on: windows-latest
17
18
19
20
21
+ run: "Get-ChildItem Env: | Sort-Object Name"
22
+
0 commit comments