From 4b051ed35f59b9775ace88e7da6e78c472ca873f Mon Sep 17 00:00:00 2001 From: Balazs Nadasdi Date: Sat, 1 May 2021 11:35:11 +0200 Subject: [PATCH] Add windows build back (#32) related #31 Not using the resolve keyword because it's not resolved until a tag has been cut. --- .github/workflows/release.yml | 10 ++++++++-- build-all.sh | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f027339..f03da4d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,15 +7,21 @@ jobs: steps: - uses: actions/checkout@master - name: release linux/amd64 - uses: ngs/go-release.action@v1.0.1 + uses: ngs/go-release.action@v1.0.2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOARCH: amd64 GOOS: linux CGO_ENABLED: 0 - name: release darwin/amd64 - uses: ngs/go-release.action@v1.0.1 + uses: ngs/go-release.action@v1.0.2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOARCH: amd64 GOOS: darwin + - name: release windows/amd64 + uses: ngs/go-release.action@v1.0.2 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GOARCH: amd64 + GOOS: windows diff --git a/build-all.sh b/build-all.sh index 2a8ad94..c6547ec 100755 --- a/build-all.sh +++ b/build-all.sh @@ -1,6 +1,6 @@ #!/bin/bash -ARCH=(386 amd64) +ARCH=(amd64) OS=(darwin linux windows) TARGET_DIR=bin