Skip to content

chore(deps): bump goreleaser/goreleaser-action from 5 to 6 #370

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

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
8 changes: 4 additions & 4 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ jobs:
run: |
make bq-cleanup
- name: Install GoReleaser
uses: goreleaser/goreleaser-action@v5
uses: goreleaser/goreleaser-action@v6
with:
install-only: true
version: v1.20.0
version: "~> v2"
- name: Test GoReleaser
run: make test-release
deploy:
Expand Down Expand Up @@ -116,10 +116,10 @@ jobs:
tags: ${{ steps.prep.outputs.tags }}
platforms: linux/amd64,linux/arm64
- name: Install GoReleaser
uses: goreleaser/goreleaser-action@v5
uses: goreleaser/goreleaser-action@v6
with:
install-only: true
version: v1.20.0
version: "~> v2"
- name: Run GoReleaser
run: make release
env:
Expand Down
3 changes: 2 additions & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
project_name: prometheus_bigquery_remote_storage_adapter
version: 2
env:
- CGO_ENABLED=0
builds:
Expand Down Expand Up @@ -27,4 +28,4 @@ checksum:
snapshot:
name_template: "{{.Tag}}-next"
changelog:
skip: false
disable: true
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ bq-cleanup:
# Make sure goreleaser is working
.PHONY: test-release
test-release:
BRANCH=$(BRANCH) COMMIT=$(COMMIT) DATE=$(DATE) VERSION_PKG=$(VERSION_PKG) goreleaser release --snapshot --skip-publish --clean
BRANCH=$(BRANCH) COMMIT=$(COMMIT) DATE=$(DATE) VERSION_PKG=$(VERSION_PKG) goreleaser release --snapshot --skip=publish --clean

.PHONY: golangci-lint
golangci-lint:
Expand Down
Loading