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 ed6d4fa425 - Show all commits

View File

@@ -4,8 +4,37 @@ on:
pull_request: pull_request:
jobs: jobs:
update_version:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.BOT_TOKEN }}
ref: ${{ gitea.head_ref }}
- name: Increment version number
uses: 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.head_ref }}
lint: lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: false
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v4
@@ -24,6 +53,7 @@ jobs:
run: flutter analyze lib test run: flutter analyze lib test
test: test:
if: false
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout code - name: Checkout code