From 991768c3149eb05cc03cd482bdf107b647f4bb63 Mon Sep 17 00:00:00 2001 From: Olivier Wulveryck Date: Thu, 26 Dec 2024 14:07:30 +0100 Subject: [PATCH 1/2] No need for protoc anymore --- .github/workflows/goreleaser.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/goreleaser.yml b/.github/workflows/goreleaser.yml index 53af81c..2c6a763 100644 --- a/.github/workflows/goreleaser.yml +++ b/.github/workflows/goreleaser.yml @@ -17,8 +17,6 @@ jobs: uses: actions/setup-go@v2 with: go-version: 1.23 - - name: Install Protoc - uses: arduino/setup-protoc@v1 - name: Run GoReleaser uses: goreleaser/goreleaser-action@v2 with: From 470c875157785b06e6914c8f6af9c3dd7f3a923b Mon Sep 17 00:00:00 2001 From: Olivier Wulveryck Date: Thu, 26 Dec 2024 14:22:03 +0100 Subject: [PATCH 2/2] Fix: Releases --- .goreleaser.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 95cc311..8490467 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -29,7 +29,7 @@ builds: - "7" archives: - - name_template: "{{ .Binary }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}" + - name_template: "{{ .Binary }}_{{ .Os }}_{{ .Arch }}" wrap_in_directory: true format_overrides: - goos: windows @@ -38,12 +38,14 @@ archives: checksum: name_template: "checksums.txt" -snapshot: - name_template: "{{ .Tag }}-next" - changelog: sort: asc filters: exclude: - "^docs:" - "^test:" + +release: + github: + owner: owulveryck + name: gomarkablestream