remove obsolete double auto-commit

This commit is contained in:
proddy
2025-12-03 22:06:06 +01:00
parent e6f825371e
commit 9ff0f83af9

View File

@@ -64,29 +64,7 @@ jobs:
- name: Commit the generated files - name: Commit the generated files
uses: stefanzweifel/git-auto-commit-action@v5 uses: stefanzweifel/git-auto-commit-action@v5
with: with:
commit_message: "chore: update generated files" commit_message: "chore: update generated files for v${{steps.build_info.outputs.VERSION}}"
- name: Configure Git
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
- name: Check for changes and commit
run: |
if [ -n "$(git status --porcelain)" ]; then
echo "Changes detected, committing..."
git add .
git commit -m "Auto-commit build artifacts and configuration updates
- Updated build configurations
- Generated build artifacts
- Version: ${{steps.build_info.outputs.VERSION}}"
echo "Pushing changes to repository..."
git push origin dev
else
echo "No changes to commit"
fi
- name: Create GitHub Release - name: Create GitHub Release
id: 'automatic_releases' id: 'automatic_releases'