Skip to content

Commit

Permalink
fix(SPV-XXX): fix go-releaser after version bump (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
wregulski authored Jun 25, 2024
1 parent 435c0e3 commit 6094279
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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

0 comments on commit 6094279

Please sign in to comment.