Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

temp fix: unsigned version bump #209

Merged
merged 1 commit into from
Aug 1, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 14 additions & 12 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,22 +46,24 @@ jobs:
- uses: actions/checkout@v2
with:
token: ${{ secrets.REPOSITORY_ACTIONS_TOKEN }}
- name: Add GPG to Git Config
run: |
git config gpg.program $(which gpg)
echo "no-tty" >> ~/.gnupg/gpg.conf
- name: Sign Commit
uses: crazy-max/ghaction-import-gpg@master
with:
gpg-private-key: ${{ secrets.ACTIONS_GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.ACTIONS_GPG_PASSPHRASE }}
git-user-signingkey: true
git-commit-gpgsign: true
git-push-gpgsign: true
# - name: Sign Commit
# uses: crazy-max/ghaction-import-gpg@master
# with:
# gpg-private-key: ${{ secrets.ACTIONS_GPG_PRIVATE_KEY }}
# passphrase: ${{ secrets.ACTIONS_GPG_PASSPHRASE }}
# git-user-signingkey: true
# git-commit-gpgsign: true
# git-push-gpgsign: true
# - name: Add GPG to Git Config
# run: |
# git config gpg.program $(which gpg)
# echo "no-tty" >> ~/.gnupg/gpg.conf
- name: Automated Version Bump
uses: phips28/gh-action-bump-version@master
env:
GITHUB_TOKEN: ${{ secrets.REPOSITORY_ACTIONS_TOKEN }}
GITHUB_USER: ${{ secrets.REPOSITORY_ACTIONS_USER }}
GITHUB_EMAIL: ${{ secrets.REPOSITORY_ACTIONS_EMAIL }}
with:
minor-wording: 'feature: '
tag-prefix: 'v'
Expand Down