-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2b017da
commit 4ff2617
Showing
1 changed file
with
1 addition
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,19 +68,14 @@ jobs: | |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null | ||
ssh-add - <<< "${{ secrets.NEXTMVBOT_SSH_KEY }}" | ||
# echo "${{ secrets.NEXTMVBOT_SIGNING_KEY }}" > ~/.ssh/signing.key | ||
# chmod 600 ~/.ssh/signing.key | ||
git config --global user.name "nextmv-bot" | ||
git config --global user.email "[email protected]" | ||
git config --global url."[email protected]:".insteadOf "https://github.com/" | ||
# git config --global gpg.format ssh | ||
# git config --global user.signingkey ~/.ssh/signing.key | ||
- name: commit new version | ||
run: | | ||
git add nextmv/__about__.py | ||
git commit -S -m "Bump version to $VERSION" | ||
git commit -m "Bump version to $VERSION" | ||
git push | ||
git tag $VERSION | ||
git push origin $VERSION | ||
|