Skip to content

Commit

Permalink
Merge pull request #1843 from mrpalide/fix/fix-skip-publish-deprecate…
Browse files Browse the repository at this point in the history
…d-flag

ready for release 5
  • Loading branch information
mrpalide authored Jun 25, 2024
2 parents ca3f742 + 896567e commit 8af871e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -196,11 +196,11 @@ format-windows: tidy ## Formats the code. Must have goimports and goimports-revi
dep: tidy ## Sorts dependencies
${OPTS} go mod vendor -v

snapshot: ## goreleaser --snapshot --skip-publish --clean
goreleaser --snapshot --skip-publish --clean
snapshot: ## goreleaser --snapshot --clean --skip=publish
goreleaser --snapshot --clean --skip=publish

snapshot-linux: ## goreleaser --snapshot --config .goreleaser-linux.yml --skip-publish --clean
goreleaser --snapshot --config .goreleaser-linux.yml --skip-publish --clean
snapshot-linux: ## goreleaser --snapshot --config .goreleaser-linux.yml --clean --skip=publish
goreleaser --snapshot --config .goreleaser-linux.yml --clean --skip=publish

snapshot-clean: ## Cleans snapshot / release
rm -rf ./dist
Expand Down Expand Up @@ -249,7 +249,7 @@ github-release: github-prepare-release
goreleaser --clean --config .goreleaser-linux.yml --release-notes releaseChangelog.md

github-release-darwin:
goreleaser --clean --config .goreleaser-darwin.yml --skip-publish
goreleaser --clean --config .goreleaser-darwin.yml --skip=publish
$(eval GITHUB_TAG=$(shell git describe --abbrev=0 --tags))
gh release upload --repo skycoin/skywire ${GITHUB_TAG} ./dist/skywire-${GITHUB_TAG}-darwin-amd64.tar.gz
gh release upload --repo skycoin/skywire ${GITHUB_TAG} ./dist/skywire-${GITHUB_TAG}-darwin-arm64.tar.gz
Expand All @@ -258,7 +258,7 @@ github-release-darwin:
gh release upload --repo skycoin/skywire ${GITHUB_TAG} --clobber ./checksums.txt

github-release-windows:
.\goreleaser\goreleaser.exe --clean --config .goreleaser-windows.yml --skip-publish
.\goreleaser\goreleaser.exe --clean --config .goreleaser-windows.yml --skip=publish
$(eval GITHUB_TAG=$(shell powershell git describe --abbrev=0 --tags))
gh release upload --repo skycoin/skywire ${GITHUB_TAG} ./dist/skywire-${GITHUB_TAG}-windows-amd64.zip
gh release upload --repo skycoin/skywire ${GITHUB_TAG} ./dist/skywire-${GITHUB_TAG}-windows-386.zip
Expand Down

0 comments on commit 8af871e

Please sign in to comment.