Skip to content

Commit c1d5ba8

Browse files
committed
chore: update GoReleaser configuration and auto-tag workflow
- Commented out GPG signing configuration in .goreleaser.yml for clarity. - Modified the default value for the skip_signing input in auto-tag-release.yml to true, allowing for easier skipping of GPG signing during releases.
1 parent 97e6e51 commit c1d5ba8

File tree

2 files changed

+12
-16
lines changed

2 files changed

+12
-16
lines changed

.github/workflows/auto-tag-release.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,10 @@ on:
1515
- ".gitignore"
1616
workflow_call:
1717
inputs:
18-
gpg_private_key:
19-
required: false
20-
type: string
21-
description: "GPG private key for signing releases"
2218
skip_signing:
2319
required: false
2420
type: boolean
25-
default: false
21+
default: true
2622
description: "Skip GPG signing of releases"
2723

2824
permissions:

.goreleaser.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@ checksum:
4242
name_template: 'checksums.txt'
4343
algorithm: sha256
4444

45-
signs:
46-
- cmd: gpg
47-
args:
48-
- "--batch"
49-
- "--local-user"
50-
- "{{ .Env.GPG_FINGERPRINT }}"
51-
- "--output"
52-
- "${signature}"
53-
- "--detach-sign"
54-
- "${artifact}"
55-
artifacts: all
45+
# signs:
46+
# - cmd: gpg
47+
# args:
48+
# - "--batch"
49+
# - "--local-user"
50+
# - "{{ .Env.GPG_FINGERPRINT }}"
51+
# - "--output"
52+
# - "${signature}"
53+
# - "--detach-sign"
54+
# - "${artifact}"
55+
# artifacts: all
5656

5757
changelog:
5858
sort: asc

0 commit comments

Comments
 (0)