Skip to content

Commit

Permalink
Merge pull request #23 from Chia-Network/fix-windows-extension
Browse files Browse the repository at this point in the history
Ensure windows executables have .exe on them
  • Loading branch information
justinengland authored Apr 7, 2022
2 parents fa2046c + a842b10 commit 5f193fe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
run: make build

- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: chia-exporter-${{ matrix.GOOS }}-${{ matrix.GOARCH }}
path: ${{ github.workspace }}/bin/chia-exporter
path: ${{ github.workspace }}/bin/chia-exporter*

release:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ all: fmt lint vet build
build: $(BIN) ; $(info $(M) building executable…) @ ## Build program binary
$Q CGO_ENABLED=0 $(GO) build \
-tags release \
-o $(BIN)/$(notdir $(basename $(MODULE))) main.go
-o $(BIN)/ $(notdir $(basename $(MODULE))).go
# Tools

$(BIN):
Expand Down
File renamed without changes.

0 comments on commit 5f193fe

Please sign in to comment.