Skip to content

Commit

Permalink
.github: Oops! need to remove the temp workdir
Browse files Browse the repository at this point in the history
- Fixes #108
  • Loading branch information
ezrec committed Sep 23, 2020
1 parent 2e4c71b commit 329c26a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,15 @@ jobs:
- name: Craft Linux Artifacts
run: |
go get -ldflags "-X main.Version=${{ steps.release.outputs.TAG }}" github.com/${GITHUB_REPOSITORY}/cmd/uv3dp
rm -rf uv3dp-${{ steps.release.outputs.TAG }}
mkdir uv3dp-${{ steps.release.outputs.TAG }}
cp README.md $(go env GOPATH)/bin/uv3dp uv3dp-${{ steps.release.outputs.TAG }}
tar -jcvf uv3dp-${{ steps.release.outputs.TAG }}-linux-amd64.tar.bz2 uv3dp-${{ steps.release.outputs.TAG }}
- name: Craft MacOS Artifacts
run: |
GOOS=darwin GOARCH=amd64 go get -ldflags "-X main.Version=${{ steps.release.outputs.TAG }}" github.com/${GITHUB_REPOSITORY}/cmd/uv3dp
rm -rf uv3dp-${{ steps.release.outputs.TAG }}
mkdir uv3dp-${{ steps.release.outputs.TAG }}
cp README.md $(go env GOPATH)/bin/uv3dp uv3dp-${{ steps.release.outputs.TAG }}
tar -jcvf uv3dp-${{ steps.release.outputs.TAG }}-macos-amd64.tar.bz2 uv3dp-${{ steps.release.outputs.TAG }}
Expand Down

0 comments on commit 329c26a

Please sign in to comment.