chore: Fix push in workflows
Some checks failed
versioning-and-changelog / versioning_and_changelog (pull_request) Failing after 15s

This commit is contained in:
Mandresy Randrianarinjaka 2025-02-05 10:10:47 +03:00
parent 5f2e7525bc
commit e9354b2ba3

View File

@ -116,4 +116,11 @@ jobs:
git add pubspec.yaml CHANGELOG.md git add pubspec.yaml CHANGELOG.md
git commit -m "chore: bump version to $NEW_VERSION+$NEW_BUILD and update changelog" git commit -m "chore: bump version to $NEW_VERSION+$NEW_BUILD and update changelog"
git push https://${{ secrets.GITEA_ACCESS_TOKEN }}@gitea.example.com/owner/repo.git master
GITEA_URL="${{ secrets.GITEA_URL }}"
GITEA_REPO="mobiles/flutter-mobile.git"
FULL_REPO_URL="${GITEA_URL}/${GITEA_REPO}"
echo "Pushing to: $FULL_REPO_URL"
git push https://${{ secrets.GITEA_ACCESS_TOKEN }}@$FULL_REPO_URL master