Browse Source

chore: update auto-tag workflow to explicitly define secrets for enhanced security

- Added explicit definitions for RELEASE_TOKEN, GPG_PRIVATE_KEY, and PASSPHRASE in the auto-tag.yml workflow.
- This change improves security by ensuring that necessary secrets are clearly specified for the release process.
pull/122/head
煎饼果子卷鲨鱼辣椒 5 months ago
parent
commit
5ab9a96c32
  1. 5
      .github/workflows/auto-tag.yml

5
.github/workflows/auto-tag.yml

@ -53,4 +53,7 @@ jobs:
uses: ./.github/workflows/release.yml
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
secrets: inherit
secrets:
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
PASSPHRASE: ${{ secrets.PASSPHRASE }}
Loading…
Cancel
Save