From 27242fdf0554442af594b2ea229cb2184b946109 Mon Sep 17 00:00:00 2001 From: Justin Harms Date: Tue, 21 Jan 2025 13:07:42 -0600 Subject: [PATCH] test --- .gitea/workflows/tag-release.yaml | 36 +++++++++++++++---------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.gitea/workflows/tag-release.yaml b/.gitea/workflows/tag-release.yaml index 52a84c8..65a8905 100644 --- a/.gitea/workflows/tag-release.yaml +++ b/.gitea/workflows/tag-release.yaml @@ -33,25 +33,25 @@ jobs: - name: Test run: go test -race -v -shuffle=on ./... - - name: Build for linux - run: | - go build -o bin/SteamCache2-${VERSION#v}-${BUILD}-${GOOS}-${GOARCH} main.go - env: - VERSION: ${{github.ref_name}} - BUILD: ${{github.run_number}} - GOOS: linux - GOARCH: amd64 - EXE: "" + # - name: Build for linux + # run: | + # go build -o bin/SteamCache2-${VERSION#v}-${BUILD}-${GOOS}-${GOARCH} main.go + # env: + # VERSION: ${{github.ref_name}} + # BUILD: ${{github.run_number}} + # GOOS: linux + # GOARCH: amd64 + # EXE: "" - - name: Build for windows - run: | - go build -o bin/SteamCache2-${VERSION#v}-${BUILD}-${GOOS}-${GOARCH} main.go - env: - VERSION: ${{github.ref_name}} - BUILD: ${{github.run_number}} - GOOS: windows - GOARCH: amd64 - EXE: ".exe" + # - name: Build for windows + # run: | + # go build -o bin/SteamCache2-${VERSION#v}-${BUILD}-${GOOS}-${GOARCH} main.go + # env: + # VERSION: ${{github.ref_name}} + # BUILD: ${{github.run_number}} + # GOOS: windows + # GOARCH: amd64 + # EXE: ".exe" - name: Release binaries uses: goreleaser/goreleaser-action@v6