test set identity

This commit is contained in:
2025-05-20 10:20:04 +02:00
parent be78f93228
commit 87b6d9cee7

View File

@@ -19,7 +19,10 @@ jobs:
steps: steps:
- name: Checkout the code - name: Checkout the code
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Set Git identity
run: |
git config user.name "Gitea CI"
git config user.email "ci@git.theprivateserver.de"
- name: Bump version - name: Bump version
id: bump id: bump
uses: callowayproject/bump-my-version@master uses: callowayproject/bump-my-version@master
@@ -27,7 +30,7 @@ jobs:
BUMPVERSION_TAG: "true" BUMPVERSION_TAG: "true"
with: with:
args: ${{ inputs.bump-type }} args: ${{ inputs.bump-type }}
github-token: ${{ secrets.GH_TOKEN }} github-token: ${{ secrets.TOKEN }}
- name: Check - name: Check
if: steps.bump.outputs.bumped == 'true' if: steps.bump.outputs.bumped == 'true'