Skip to content

Commit

Permalink
feat(gpg): start signing commits again
Browse files Browse the repository at this point in the history
  • Loading branch information
pathurs committed Oct 7, 2020
1 parent 7fe7fc5 commit baf1b1b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/nodejs-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ env:
COLONISE_PACKAGE_NAME: ${{ secrets.COLONISE_PACKAGE_NAME }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GIT_AUTHOR_NAME: ${{ secrets.GIT_NAME }}
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_EMAIL }}
GIT_COMMITTER_NAME: ${{ secrets.GIT_NAME }}
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_EMAIL }}

jobs:
lint:
Expand Down Expand Up @@ -143,5 +147,15 @@ jobs:
- name: Zip Build
run: zip -r build.zip ./distribute/

- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v3.0.1
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: Run Semantic Release
run: npx semantic-release

0 comments on commit baf1b1b

Please sign in to comment.