From c1d5ba84b3916cd363e6b8c585b2048ab0e6a423 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=85=8E=E9=A5=BC=E6=9E=9C=E5=AD=90=E5=8D=B7=E9=B2=A8?= =?UTF-8?q?=E9=B1=BC=E8=BE=A3=E6=A4=92?= Date: Mon, 30 Dec 2024 19:12:50 +0800 Subject: [PATCH] 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. --- .github/workflows/auto-tag-release.yml | 6 +----- .goreleaser.yml | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 16 deletions(-) diff --git a/.github/workflows/auto-tag-release.yml b/.github/workflows/auto-tag-release.yml index e6a0803..250f1c1 100644 --- a/.github/workflows/auto-tag-release.yml +++ b/.github/workflows/auto-tag-release.yml @@ -15,14 +15,10 @@ on: - ".gitignore" workflow_call: inputs: - gpg_private_key: - required: false - type: string - description: "GPG private key for signing releases" skip_signing: required: false type: boolean - default: false + default: true description: "Skip GPG signing of releases" permissions: diff --git a/.goreleaser.yml b/.goreleaser.yml index 90bee67..c247e1c 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -42,17 +42,17 @@ checksum: name_template: 'checksums.txt' algorithm: sha256 -signs: - - cmd: gpg - args: - - "--batch" - - "--local-user" - - "{{ .Env.GPG_FINGERPRINT }}" - - "--output" - - "${signature}" - - "--detach-sign" - - "${artifact}" - artifacts: all +# signs: +# - cmd: gpg +# args: +# - "--batch" +# - "--local-user" +# - "{{ .Env.GPG_FINGERPRINT }}" +# - "--output" +# - "${signature}" +# - "--detach-sign" +# - "${artifact}" +# artifacts: all changelog: sort: asc