Skip to content

bump go version to 1.24.11 #334

bump go version to 1.24.11

bump go version to 1.24.11 #334

name: PullRequestAndMergeMaster
on:
push:
branches:
- master
pull_request:
branches:
jobs:
CreateAndPushWindowsExecutable:
name: CreateAndPushWindowsExecutable
strategy:
matrix:
go: [ 1.24.6 ]
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 }}