From 8530705b96c3933569750597d9bf2fbdebfa4118 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Fri, 19 Sep 2025 07:25:36 -0500 Subject: [PATCH 1/2] Fix handling of tag update --- .github/workflows/update-action-tag.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/update-action-tag.yml b/.github/workflows/update-action-tag.yml index cfdcd3b..4bfe532 100644 --- a/.github/workflows/update-action-tag.yml +++ b/.github/workflows/update-action-tag.yml @@ -25,13 +25,6 @@ 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: Remove the existing tag run: | export VERSION=$(cat .github/workflows/version.txt) @@ -41,7 +34,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: From 70ea52ca41e9805ec34f7035d8796540987f595d Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Fri, 19 Sep 2025 07:28:50 -0500 Subject: [PATCH 2/2] add git config --- .github/workflows/update-action-tag.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/update-action-tag.yml b/.github/workflows/update-action-tag.yml index 4bfe532..c124d93 100644 --- a/.github/workflows/update-action-tag.yml +++ b/.github/workflows/update-action-tag.yml @@ -25,6 +25,11 @@ jobs: # Needed to push the tag in the final step persist-credentials: true + - 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: | export VERSION=$(cat .github/workflows/version.txt)