From 31339fb4d87f89215e5f417699fd1fb947d2de61 Mon Sep 17 00:00:00 2001 From: Andrew Woodlee Date: Fri, 14 Feb 2025 14:31:24 -0600 Subject: [PATCH] v0.7.7 --- .changes/v0.7.7.md | 4 ++++ .github/workflows/release.yml | 4 ++-- .woodpecker/gitea.yml | 2 +- CHANGELOG.md | 5 +++++ cmd/version.go | 2 +- 5 files changed, 13 insertions(+), 4 deletions(-) create mode 100644 .changes/v0.7.7.md diff --git a/.changes/v0.7.7.md b/.changes/v0.7.7.md new file mode 100644 index 0000000..28c4238 --- /dev/null +++ b/.changes/v0.7.7.md @@ -0,0 +1,4 @@ +## v0.7.7 - 2025-02-14 +### Fixed +* v0.7.1: Incorrect local config file loading logic caused files to not be detected +* CI configs diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7d3fcd5..a477617 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,7 +34,7 @@ jobs: with: distribution: goreleaser version: 2.7.0 - args: release --release-notes=".changes/${GIT_TAG_NAME}.md" -f .goreleaser/github.yml --clean + run: goreleaser release --release-notes=".changes/$(go run backy.go version -V).md" -f .goreleaser/github.yml --clean env: GITHUB_TOKEN: ${{ secrets.GORELEASER_TOKEN }} - GIT_TAG_NAME: ${{ steps.tagName.outputs.tag }} + # GIT_TAG_NAME: ${{ steps.tagName.outputs.tag }} diff --git a/.woodpecker/gitea.yml b/.woodpecker/gitea.yml index 25ca406..c5e0b2b 100644 --- a/.woodpecker/gitea.yml +++ b/.woodpecker/gitea.yml @@ -4,7 +4,7 @@ steps: image: golang:1.23 commands: - go mod tidy - - go install github.com/goreleaser/goreleaser@latest + - go install github.com/goreleaser/goreleaser/v2@v2.7.0 - goreleaser release -f .goreleaser/gitea.yml --release-notes=".changes/$(go run backy.go version -V).md" secrets: [ gitea_token ] when: diff --git a/CHANGELOG.md b/CHANGELOG.md index b122f57..fca6166 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [Changie](https://github.com/miniscruff/changie). +## v0.7.7 - 2025-02-14 +### Fixed +* v0.7.1: Incorrect local config file loading logic caused files to not be detected +* CI configs + ## v0.7.6 - 2025-02-14 ### Fixed * v0.7.1: Incorrect local config file loading logic caused files to not be detected diff --git a/cmd/version.go b/cmd/version.go index 8453161..4948b31 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -7,7 +7,7 @@ import ( "github.com/spf13/cobra" ) -const versionStr = "0.7.6" +const versionStr = "0.7.7" var ( versionCmd = &cobra.Command{