Skip to content

Commit 68af09f

Browse files
authored
updating windows containerd nightly build to use golang 1.18.2 (#220)
Signed-off-by: Mark Rossetti <[email protected]>
1 parent c2e8d9c commit 68af09f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/windows-containerd-nightly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Install Go
1919
uses: actions/setup-go@v2
2020
with:
21-
go-version: 1.17.5
21+
go-version: 1.18.2
2222

2323
- name: Create drop folder
2424
run: mkdir -p $GITHUB_WORKSPACE/output/bin
@@ -31,7 +31,7 @@ jobs:
3131
git clone https://github.com/Microsoft/hcsshim
3232
cd hcsshim
3333
go build -o $GITHUB_WORKSPACE/output/bin/containerd-shim-runhcs-v1.exe ./cmd/containerd-shim-runhcs-v1
34-
git rev-parse HEAD > $GITHUB_WORKSPACE/output/bin/hcsshim-revision.txt
34+
git rev-parse HEAD | tee $GITHUB_WORKSPACE/output/bin/hcsshim-revision.txt
3535
3636
- name: Build containerd
3737
env:
@@ -43,7 +43,7 @@ jobs:
4343
make binaries
4444
cp ./bin/containerd.exe $GITHUB_WORKSPACE/output/bin
4545
cp ./bin/ctr.exe $GITHUB_WORKSPACE/output/bin
46-
git rev-parse HEAD > $GITHUB_WORKSPACE/output/bin/containerd-revision.txt
46+
git rev-parse HEAD | tee $GITHUB_WORKSPACE/output/bin/containerd-revision.txt
4747
4848
- name: make windows-containerd zip
4949
run: |

0 commit comments

Comments
 (0)