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.
This commit is contained in:
煎饼果子卷鲨鱼辣椒 2024-12-30 19:19:51 +08:00
parent bf6adcbac2
commit 2d008db25e

View File

@ -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 }}