Skip to content

Commit

Permalink
fix(ci): update author and committer & sign action commits
Browse files Browse the repository at this point in the history
  • Loading branch information
brewcoua committed Jun 9, 2024
1 parent dd555c0 commit 842605a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,16 @@ jobs:
with:
node-version: 'lts/iron'

- name: Import GPG
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
git_user_signingkey: true
git_commit_gpgsign: true
git_tag_gpgsign: true
git_push_gpgsign: true

- name: Install dependencies
run: bun install --frozen-lockfile

Expand All @@ -57,3 +67,7 @@ jobs:
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_AUTHOR_NAME: ${{ github.actor }}
GIT_AUTHOR_EMAIL: ${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com
GIT_COMMITTER_NAME: brewcoua-bot
GIT_COMMITTER_EMAIL: 151367391+brewcoua-bot@users.noreply.github.com

0 comments on commit 842605a

Please sign in to comment.