Skip to content

Commit

Permalink
fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
256dpi committed May 19, 2021
1 parent 4bcceed commit e79310d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
run: go test ./...
- name: Build
run: |
env GOOS=darwin GOARCH=amd64 go build ./cmd/gcode -o gcode-darwin-amd64
env GOOS=linux GOARCH=amd64 go build ./cmd/gcode -o gcode-linux-amd64
env GOOS=darwin GOARCH=amd64 go build -o gcode-darwin-amd64 ./cmd/gcode
env GOOS=linux GOARCH=amd64 go build -o gcode-linux-amd64 ./cmd/gcode
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
Expand Down

0 comments on commit e79310d

Please sign in to comment.