diff --git a/.github/workflows/binaries.yml b/.github/workflows/binaries.yml index 6e237d9..a7556e1 100644 --- a/.github/workflows/binaries.yml +++ b/.github/workflows/binaries.yml @@ -15,6 +15,7 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} goos: linux goarch: amd64 + project_path: _example release-linux-arm64: name: release linux/arm64 runs-on: ubuntu-latest @@ -25,6 +26,7 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} goos: linux goarch: arm64 + project_path: _example release-darwin-amd64: name: release darwin/amd64 runs-on: ubuntu-latest @@ -35,6 +37,7 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} goos: darwin goarch: amd64 + project_path: _example release-darwin-arm64: name: release darwin/arm64 runs-on: ubuntu-latest @@ -45,3 +48,4 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} goos: darwin goarch: arm64 + project_path: _example diff --git a/go.mod b/go.mod index 7f9812f..ee89c83 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module github.com/a8m/envsubst -go 1.14 +go 1.17