Skip to content

Commit

Permalink
ci: fix version update
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcjkb committed Feb 11, 2024
1 parent 77640a8 commit ad07d40
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/version_in_code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,14 @@ jobs:
- name: Commit Changes
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git config --local user.email "[email protected]"
git config --local user.name "Marc Jakobi"
if [[ ! -z $(git status -s) ]]; then
git add .
git commit -m "chore(constants.lua): update version variable"
fi
with:
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}

- name: Push to Github
uses: ad-m/github-push-action@master
Expand Down

0 comments on commit ad07d40

Please sign in to comment.