We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c3c0ad commit a25870aCopy full SHA for a25870a
1 file changed
.github/workflows/go.yml
@@ -50,11 +50,12 @@ jobs:
50
51
- name: Build artifact
52
run: |
53
- if [[ "${{ env.GOOS }}" == "windows" ]]; then
+ if [ "${{ runner.os }}" == "Windows" ]; then
54
go build -o checkhost-${{ env.GOOS }}-${{ env.GOARCH }}.exe -v
55
else
56
go build -o checkhost-${{ env.GOOS }}-${{ env.GOARCH }} -v
57
fi
58
+ shell: bash
59
60
- name: Upload build artifact
61
uses: actions/upload-artifact@v4
0 commit comments