Updated ref names
All checks were successful
Pull Request Pipeline / lint (pull_request) Successful in 2m13s
Pull Request Pipeline / test (pull_request) Successful in 2m22s

This commit is contained in:
2026-01-20 12:03:31 +01:00
parent 057f8c1d58
commit bc51b23563

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