From 2d008db25e6a2031d9046cbfd8ceb24d0bb9e7da 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:19:51 +0800 Subject: [PATCH] chore: simplify auto-tag workflow by removing GPG signing input - Removed the 'skip_signing' input from the auto-tag-release.yml workflow to streamline the release process. - Updated GoReleaser execution arguments to eliminate the '--skip-sign' option, enhancing clarity and focus on the release process. --- .github/workflows/auto-tag-release.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/auto-tag-release.yml b/.github/workflows/auto-tag-release.yml index 2a677d9..d8057a1 100644 --- a/.github/workflows/auto-tag-release.yml +++ b/.github/workflows/auto-tag-release.yml @@ -15,11 +15,6 @@ on: - ".gitignore" workflow_call: inputs: - skip_signing: - required: false - type: boolean - default: true - description: "Skip GPG signing of releases" permissions: contents: write @@ -162,7 +157,7 @@ jobs: with: distribution: goreleaser version: latest - args: release --clean --timeout 60m --skip-sign --debug + args: release --clean --timeout 60m --debug env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} VERSION: ${{ steps.get_latest_tag.outputs.version }}