chore: Remove Git commit/push steps from check.yml

This commit removes the Git commit and push steps from the `check.yml` workflow. These steps were previously used to update the version info, but are no longer needed. The version info is now updated through a different mechanism.
This commit is contained in:
2025-03-20 21:07:35 +07:00
parent cd84f52282
commit a1c8f0553e

View File

@@ -109,14 +109,6 @@ jobs:
echo "VERSION=$branch.$hash.$date" >> $GITHUB_ENV echo "VERSION=$branch.$hash.$date" >> $GITHUB_ENV
echo "RELEASE_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV echo "RELEASE_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
- name: Commit Changes
run: |
git pull
git commit -am "chore(update): Update Version Info"
git push origin HEAD
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
- name: Create ZIP Archive - name: Create ZIP Archive
run: | run: |
zip -r Gakumas-Translation-Data-EN-${{ env.VERSION }}.zip local-files version.txt zip -r Gakumas-Translation-Data-EN-${{ env.VERSION }}.zip local-files version.txt