fix: use github actions bot as identity

This commit is contained in:
Bart van der Braak 2023-12-01 01:07:35 +01:00 committed by GitHub
parent 6bb67d26a3
commit 8e19081300
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,8 +58,8 @@ jobs:
- if: env.DEPLOYED_TAG_EXISTS == 'false' || env.NO_CHANGES == 'false' - if: env.DEPLOYED_TAG_EXISTS == 'false' || env.NO_CHANGES == 'false'
name: Tag Deployment name: Tag Deployment
run: | run: |
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}" git config --global user.name "github-actions[bot]"
git config --global user.email "bartvdbraak@users.noreply.github.com" git config --global user.email "github-actions[bot]@users.noreply.github.com"
git tag -fa deployed -m "Deployed to Azure" git tag -fa deployed -m "Deployed to Azure"
git push origin --tags --force git push origin --tags --force