Skip to content

Commit

Permalink
Merge pull request #194 from drackp2m/dev
Browse files Browse the repository at this point in the history
πŸ› fix: add env params on run semantic release job
  • Loading branch information
drackp2m authored Nov 4, 2024
2 parents a4adfdb + 5c845d8 commit 70acfe4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ jobs:
run: |
echo "$GPG_PRIVATE_KEY" > private.key
gpg --batch --import private.key
git config --global user.name "drackp2m-semantic-release-bot"
git config --global user.email "[email protected]"
git config --global commit.gpgSign true
git config --global user.signingkey 89AE9225AE159D89
echo "allow-loopback-pinentry" >> ~/.gnupg/gpg-agent.conf
Expand All @@ -48,4 +46,8 @@ jobs:
- name: Run semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_AUTHOR_NAME: 'drackp2m-semantic-release-bot'
GIT_AUTHOR_EMAIL: '[email protected]'
GIT_COMMITTER_NAME: 'drackp2m-semantic-release-bot'
GIT_COMMITTER_EMAIL: '[email protected]'
run: node --run release

0 comments on commit 70acfe4

Please sign in to comment.