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

This commit is contained in:
Mandresy Randrianarinjaka 2025-02-05 10:16:51 +03:00
parent e9354b2ba3
commit 748e42eb5a

View File

@ -117,6 +117,12 @@ 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"
# Vérification de l'URL du dépôt
if [ -z "${{ secrets.GITEA_URL }}" ]; then
echo "❌ ERROR: GITEA_URL is not set!"
exit 1
fi
GITEA_URL="${{ secrets.GITEA_URL }}" GITEA_URL="${{ secrets.GITEA_URL }}"
GITEA_REPO="mobiles/flutter-mobile.git" GITEA_REPO="mobiles/flutter-mobile.git"
FULL_REPO_URL="${GITEA_URL}/${GITEA_REPO}" FULL_REPO_URL="${GITEA_URL}/${GITEA_REPO}"