bump go version to 1.24.11 #336
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: PullRequestAndMergeMaster | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| jobs: | |
| CreateAndPushWindowsExecutable: | |
| name: CreateAndPushWindowsExecutable | |
| strategy: | |
| matrix: | |
| go: [ 1.24.11 ] | |
| goarch: [ amd64 ] | |
| runs-on: windows-2022 | |
| steps: | |
| - uses: actions/setup-go@v2 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| id: go | |
| - name: Setting EnvVariable to checkout newLine char properly | |
| shell: bash | |
| run: | | |
| git config --system core.autocrlf false | |
| git config --system core.eol lf | |
| - name: Checking out the code | |
| uses: actions/checkout@v2 | |
| - name: Test and Build | |
| shell: powershell | |
| run: | | |
| $ErrorView = 'NormalView' | |
| [Environment]::SetEnvironmentVariable("path", "$env:path;$env:GOPATH\bin", "Machine") | |
| .\win_build.ps1 -arch ${{ matrix.goarch }} | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: binaries | |
| path: .\target\bin\windows_${{ matrix.goarch }} |