chore: adapt go1.11 #127
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: goreleaser | |
| on: | |
| push: | |
| tags: | |
| - 'v*.*.*' | |
| workflow_dispatch: | |
| jobs: | |
| goreleaser: | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| submodules: recursive | |
| - | |
| name: Set up Go | |
| uses: actions/setup-go@v3 | |
| with: | |
| go-version: 1.21 | |
| - | |
| name: Install upx | |
| run: sudo apt install upx zip -y | |
| continue-on-error: true | |
| - name: Set up GCC | |
| uses: egor-tensin/setup-gcc@v1 | |
| with: | |
| version: latest | |
| platform: x64 | |
| - | |
| name: Run GoReleaser | |
| uses: goreleaser/goreleaser-action@v5 | |
| with: | |
| distribution: goreleaser | |
| version: latest | |
| args: release --rm-dist --skip-validate | |
| workdir: v2/ | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GOPATH: "/home/runner/go" | |
| - name: Set up Go 1.11 | |
| uses: actions/setup-go@v3 | |
| with: | |
| go-version: '1.11' | |
| - name: Compile for Windows x64 | |
| run: go build -o dist/gogo_windowsxp_amd64.exe -ldflags "-s -w -X 'github.com/chainreactors/gogo/v2/internal/core.ver=${{ github.ref }}'" -tags="forceposix" -asmflags "all=-trimpath=${{ env.GOPATH }}" -gcflags "all=-trimpath=${{ env.GOPATH }}" . | |
| env: | |
| GOOS: windows | |
| GOARCH: amd64 | |
| working-directory: v2 | |
| - name: Compile for Windows x86 | |
| run: go build -o dist/gogo_windowsxp_386.exe -ldflags "-s -w -X 'github.com/chainreactors/gogo/v2/internal/core.ver=${{ github.ref }}'" -tags="forceposix" -asmflags "all=-trimpath=${{ env.GOPATH }}" -gcflags "all=-trimpath=${{ env.GOPATH }}" . | |
| env: | |
| GOOS: windows | |
| GOARCH: '386' | |
| working-directory: v2 | |
| - name: Zip files | |
| run: zip -r v2/dist/gogo_archive.zip v2/dist/gogo* tools/* README.md | |
| - name: Upload binaries to release | |
| uses: svenstaro/upload-release-action@v2 | |
| with: | |
| repo_token: ${{ secrets.GITHUB_TOKEN }} | |
| file: v2/dist/gogo* | |
| tag: ${{ github.ref }} | |
| overwrite: true | |
| file_glob: true | |
| draft: true | |