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: github release ci error #1149

Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ jobs:
make release
env:
GORELEASER_MOUNT_CONFIG: true
GORELEASER_IMAGE: line/goreleaserx:1.13.1-1.19.3
GORELEASER_IMAGE: goreleaser/goreleaser-cross:v1.21-v1.20.0
GORELEASER_RELEASE: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,6 @@ Ref: https://keepachangelog.com/en/1.0.0/
### Event Breaking Changes

### Build, CI
* (ci) [\#1149](https://github.com/Finschia/finschia-sdk/pull/1149) fix github release ci error

### Document Updates
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ GORELEASER_BUILD_LDF := $(strip $(GORELEASER_BUILD_LDF))

GORELEASER_SKIP_VALIDATE ?= false
GORELEASER_DEBUG ?= false
GORELEASER_IMAGE ?= line/goreleaserx:1.13.1-1.19.3
GORELEASER_IMAGE ?= goreleaser/goreleaser-cross:v1.21-v1.20.0
GORELEASER_RELEASE ?= false
GO_MOD_NAME := github.com/Finschia/finschia-sdk

Expand Down Expand Up @@ -578,7 +578,7 @@ release-snapshot:
-f "$(GORELEASER_CONFIG)" \
--skip-validate=$(GORELEASER_SKIP_VALIDATE) \
--debug=$(GORELEASER_DEBUG) \
--rm-dist
--clean

release:
docker run --rm \
Expand All @@ -594,6 +594,6 @@ release:
--skip-validate=$(GORELEASER_SKIP_VALIDATE) \
--skip-announce=true \
--debug=$(GORELEASER_DEBUG) \
--rm-dist
--clean

.PHONY: release-snapshot release
Loading