Lizenzen aktualisieren in Push-Pipeline #184

Merged
flixcoo merged 13 commits from setup/183-lizenzen-aktualisieren-in-push-pipeline into development 2026-01-24 11:41:08 +00:00
Showing only changes of commit 9a307ceed5 - Show all commits

View File

@@ -59,9 +59,39 @@ jobs:
echo "No changes to commit" echo "No changes to commit"
fi fi
format:
update_version:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: generate_licenses needs: generate_licenses
if: gitea.ref == 'refs/heads/development'
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.BOT_TOKEN }}
ref: ${{ gitea.ref_name }}
- name: Increment version number
uses: https://github.com/stikkyapp/update-pubspec-version@v2
with:
strategy: 'patch'
path: './pubspec.yaml'
- name: Commit version update
env:
GITEA_TOKEN: ${{ secrets.BOT_TOKEN }}
run: |
git config --global user.name "Gitea Actions [bot]"
git config --global user.email "actions@yannick-weigert.de"
git add pubspec.yaml
git commit -m "Updated version number [skip ci]"
git push origin HEAD:${{ gitea.ref_name }}
format:
runs-on: ubuntu-latest
needs: update_version
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v4
@@ -103,33 +133,4 @@ jobs:
fi fi
- name: Verify format - name: Verify format
run: flutter analyze lib test run: flutter analyze lib test
update_version:
runs-on: ubuntu-latest
needs: [format, generate_licenses]
if: gitea.ref == 'refs/heads/development'
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.BOT_TOKEN }}
ref: ${{ gitea.ref_name }}
- name: Increment version number
uses: https://github.com/stikkyapp/update-pubspec-version@v2
with:
strategy: 'patch'
path: './pubspec.yaml'
- name: Commit version update
env:
GITEA_TOKEN: ${{ secrets.BOT_TOKEN }}
run: |
git config --global user.name "Gitea Actions [bot]"
git config --global user.email "actions@yannick-weigert.de"
git add pubspec.yaml
git commit -m "Updated version number [skip ci]"
git push origin HEAD:${{ gitea.ref_name }}