Skip to content

Commit

Permalink
fix: add required vars
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-butler-irl authored Jun 7, 2022
1 parent b39d62e commit 9579a87
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ jobs:
- name: Sign Tag
env:
SEMVER_VERSION: ${{ steps.versionNumber.outputs.version }}
GH_TOKEN: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}
GIT_AUTHOR_NAME: ${{ steps.import-gpg.outputs.name }}
GIT_AUTHOR_EMAIL: ${{ steps.import-gpg.outputs.email }}
GIT_COMMITTER_NAME: ${{ steps.import-gpg.outputs.name }}
GIT_COMMITTER_EMAIL: ${{ steps.import-gpg.outputs.email }}
run: |
echo "Version: $SEMVER_VERSION"
git tag "v${SEMVER_VERSION}" "v${SEMVER_VERSION}" -f -s -m "Sign Tag"
Expand Down

0 comments on commit 9579a87

Please sign in to comment.