Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(SPV-XXX): fix go-releaser after version bump #244

Merged
merged 1 commit into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
uses: goreleaser/[email protected]
with:
distribution: goreleaser
version: latest
args: release --rm-dist --debug
version: v1
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
Expand Down
6 changes: 3 additions & 3 deletions .make/common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ install-releaser: ## Install the GoReleaser application
release:: ## Full production release (creates release in Github)
@echo "releasing..."
@test $(github_token)
@export GITHUB_TOKEN=$(github_token) && goreleaser --rm-dist
@export GITHUB_TOKEN=$(github_token) && goreleaser --clean

release-test: ## Full production test release (everything except deploy)
@echo "creating a release test..."
@goreleaser --skip-publish --rm-dist
@goreleaser --skip-publish --clean

release-snap: ## Test the full release (build binaries)
@echo "creating a release snapshot..."
@goreleaser --snapshot --skip-publish --rm-dist
@goreleaser --snapshot --skip-publish --clean

replace-version: ## Replaces the version in HTML/JS (pre-deploy)
@echo "replacing version..."
Expand Down
Loading