Browse Source

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.
pull/122/head
煎饼果子卷鲨鱼辣椒 5 months ago
parent
commit
2d008db25e
  1. 7
      .github/workflows/auto-tag-release.yml

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

Loading…
Cancel
Save