diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 334f2ef..915fd9c 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -52,7 +52,6 @@ jobs: file: ./Dockerfile platforms: | linux/amd64 - linux/arm64 push: true tags: | git.hl.srp.life/${{ gitea.repository }}:latest @@ -61,8 +60,13 @@ jobs: steps: - name: checkout code uses: actions/checkout@v4 + - name: setup go 1.23.1 and fetch deps + uses: actions/setup-go@v5 + with: + go-version: '1.23.1' + cache-dependency-path: go.sum - name: gotta build 'em all - uses: chenasraf/go-cross-build@v1 + uses: https://git.hl.srp.life/srp/go-cross-build@v1 with: platforms: 'linux/amd64, linux/arm64, darwin/amd64, darwin/arm64, freebsd/amd64, netbsd/amd64, openbsd/amd64, windows/amd64' name: bingo