Skip to content

Commit

Permalink
Add git config user & email
Browse files Browse the repository at this point in the history
  • Loading branch information
DarylTodosichuk committed Oct 22, 2024
1 parent d51e952 commit b354924
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/docker-build-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ jobs:
echo "tagpatch=${VERSION_PATCH}" >> $GITHUB_OUTPUT
- name: Create Git Tag
run: |
git config user.name "GitHub Actions 1"
git config user.email "github-actions@users.noreply.github.com"
git tag -a "${{steps.tag-selector.outputs.gittag}}" -m "${{steps.tag-selector.outputs.tagmsg}}"
git push origin "${{steps.tag-selector.outputs.gittag}}"
outputs:
Expand All @@ -103,7 +105,7 @@ jobs:
TAGNAME: ${{needs.GenerateTag.outputs.TAGNAME}}
TAGMESSAGE: ${{needs.GenerateTag.outputs.TAGMESSAGE}}
run: |
git config user.name "GitHub Actions"
git config user.name "GitHub Actions 2"
git config user.email "github-actions@users.noreply.github.com"
git tag ${{env.TAGNAME}} -m "${{env.TAGMESSAGE}}"
git push origin ${{env.TAGNAME}}
Expand Down
3 changes: 2 additions & 1 deletion applications/scripts/datafix-ab#001.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ test3
test4
test5
test6
test7
test7
test8

0 comments on commit b354924

Please sign in to comment.