Skip to content

Commit 046cfe1

Browse files
committed
fix: standardize quotes in release workflow and remove unused format in GoReleaser config
1 parent d1585ec commit 046cfe1

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: Release
33
on:
44
push:
55
tags:
6-
- 'v*' # Trigger on version tags like v0.1.0, v0.2.0, etc.
6+
- "v*" # Trigger on version tags like v0.1.0, v0.2.0, etc.
77

88
permissions:
9-
contents: write # Required to create releases and upload assets
9+
contents: write # Required to create releases and upload assets
1010

1111
jobs:
1212
goreleaser:
@@ -15,16 +15,18 @@ jobs:
1515
- name: Checkout
1616
uses: actions/checkout@v5
1717
with:
18-
fetch-depth: 0 # Full git history for changelog generation
18+
fetch-depth: 0 # Full git history for changelog generation
1919

2020
- name: Set up Go
2121
uses: actions/setup-go@v5
22+
with:
23+
go-version: "1.25"
2224

2325
- name: Run GoReleaser
2426
uses: goreleaser/goreleaser-action@v6
2527
with:
2628
distribution: goreleaser
27-
version: '~> v2'
29+
version: "~> v2"
2830
args: release --clean
2931
env:
3032
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.goreleaser.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ builds:
2525

2626
archives:
2727
- id: nodepulse
28-
format: tar.gz
2928
name_template: >-
3029
{{ .ProjectName }}-
3130
{{- .Version }}-

0 commit comments

Comments
 (0)