From 4ff2617cd1e81a9cfaac16543379ecaa7e1e67f0 Mon Sep 17 00:00:00 2001 From: Sebastian Quintero Date: Tue, 2 Jan 2024 16:44:51 -0500 Subject: [PATCH] Remove signing lines --- .github/workflows/publish.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 59246a8..60fa257 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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 "tech+gh-nextmv-bot@nextmv.io" git config --global url."git@github.com:".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