diff --git a/.github/workflows/update-action-tag.yml b/.github/workflows/update-action-tag.yml index cfdcd3b..c124d93 100644 --- a/.github/workflows/update-action-tag.yml +++ b/.github/workflows/update-action-tag.yml @@ -25,12 +25,10 @@ jobs: # Needed to push the tag in the final step persist-credentials: true - - name: Setup - uses: ./setup - with: - aws_role_arn: ${{ secrets.AWS_ROLE_ARN }} - aws_region_name: ${{ vars.AWS_REGION_NAME }} - aws_secret_id: ${{ secrets.AWS_SECRET_ID }} + - name: Set up git config + run: | + git config user.email "167856002+mongodb-dbx-release-bot[bot]@users.noreply.github.com" + git config user.name "mongodb-dbx-release-bot[bot]" - name: Remove the existing tag run: | @@ -41,7 +39,7 @@ jobs: - name: Create a new signed tag uses: ./git-sign with: - command: git tag -a \"v${{ env.VERSION }}\" -m \"Update tag\" -s --local-user=${{ env.GPG_KEY_ID }} + command: git tag -a \"v${{ env.VERSION }}\" -m \"Update tag\" -s --local-user=${{ SECRETS.GPG_KEY_ID }} - name: Push the tag run: