Push Pipeline Error #181

Merged
flixcoo merged 5 commits from hotfix/push-pipeline-error into development 2026-01-20 14:52:47 +00:00
Showing only changes of commit bc51b23563 - Show all commits

View File

@@ -52,8 +52,8 @@ jobs:
env:
GITEA_TOKEN: ${{ secrets.BOT_TOKEN }}
run: |
git fetch origin ${{ gitea.head_ref }}
git checkout ${{ gitea.head_ref }}
git fetch origin ${{ gitea.ref_name }}
git checkout ${{ gitea.ref_name }}
dart fix --apply lib
dart fix --apply test
@@ -73,7 +73,7 @@ jobs:
update_version:
runs-on: ubuntu-latest
needs: Format
needs: format
if: gitea.ref == 'refs/heads/development'
steps:
- name: Checkout code
@@ -81,7 +81,7 @@ jobs:
with:
fetch-depth: 0
token: ${{ secrets.BOT_TOKEN }}
ref: ${{ gitea.head_ref }}
ref: ${{ gitea.ref_name }}
- name: Increment version number
uses: https://github.com/stikkyapp/update-pubspec-version@v2