chore(main): release 1.2.5 #36
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI - Pull Request | |
on: | |
pull_request: | |
jobs: | |
up-to-date: | |
name: "Check branch is up to date" | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.head_ref }} | |
- name: Check branch is up to date | |
run: | | |
echo ${{ github.event.pull_request.base.sha}} | |
echo ${{ github.event.pull_request.head.sha}} | |
if git merge-base --is-ancestor ${{ github.event.pull_request.base.sha}} ${{ github.event.pull_request.head.sha}} | |
then | |
echo "Your branch is up to date." | |
exit 0 | |
else | |
echo "You need to merge / rebase." | |
exit 1 | |
fi | |
changes: | |
name: "Check for changes in code" | |
needs: up-to-date | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
outputs: | |
files: ${{steps.changed-files.outputs.any_changed}} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: main | |
persist-credentials: false | |
- name: Get all changed *.dart and pubspec.yaml | |
id: changed-files | |
uses: tj-actions/changed-files@v41 | |
with: | |
base_sha: ${{ github.event.pull_request.base.sha }} | |
sha: ${{ github.event.pull_request.head.sha }} | |
files: | | |
**/*.dart | |
pubspec.yaml | |
code-quality: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
needs: changes | |
if: needs.changes.outputs.files == 'true' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.head_ref }} | |
- name: Get branch name | |
id: branch-name | |
uses: tj-actions/branch-names@v7.0.7 | |
- uses: subosito/flutter-action@v2 | |
- name: Setup flutter | |
run: flutter pub get | |
- name: Lint and format | |
run: | | |
dart format . -l 120 | |
dart fix --apply | |
flutter analyze | |
- name: Check for modified files | |
id: git-check | |
run: echo "modified=$(if [ -n "$(git status --porcelain)" ]; then echo "true"; else echo "false"; fi)" >> $GITHUB_ENV | |
- name: Update changes in GitHub repository | |
if: env.modified == 'true' | |
run: | | |
git config --global user.name "github-actions" | |
git config --global user.email "github-actions@github.com" | |
git add -A | |
git commit -m '[automated commit] lint format and import sort' | |
git push | |
deploy-preview: | |
name: Deploy preview version of the example app on firebase | |
needs: code-quality | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
- name: Setup flutter | |
run: flutter pub get | |
- name: Build example app | |
run: | | |
cd example | |
flutter build web -o ../build --no-tree-shake-icons | |
- uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
repoToken: "${{ secrets.GITHUB_TOKEN }}" | |
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT_ZDS_FLUTTER }}" | |
expires: 7d | |
projectId: zds-c9c24 | |
channelId: "pr-${{ github.event.number }}-${{ github.event.pull_request.head.ref }}" |