Skip to content

Commit 9829ee8

Browse files
committed
fixed worflow
1 parent a9ff35c commit 9829ee8

1 file changed

Lines changed: 17 additions & 1 deletion

File tree

.github/workflows/first.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,20 @@ name: first
33
on: push
44

55
jobs:
6-
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+
steps:
18+
- name: Step One
19+
uses: actions/checkout@v4
20+
- name: Step Two
21+
run: "Get-ChildItem Env: | Sort-Object Name"
22+

0 commit comments

Comments
 (0)