Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: "Checks"

on:
pull_request:
branches: [ main ]
types: [ opened, synchronize, reopened ]
branches: [main]
types: [opened, synchronize, reopened]

jobs:
lint-dart:
Expand All @@ -15,7 +15,7 @@ jobs:
uses: flutter-actions/setup-flutter@v4
with:
channel: stable
version: '3.38.8'
version: "3.41.6"
cache: true
cache-sdk: true
cache-key: ${{ runner.os }}-flutter-${{ hashFiles('pubspec.yaml') }}
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
name: dart-coverage-${{ github.run_id }}
path: coverage/lcov.info
retention-days: 1

coverage-comment:
needs: lint-dart
if: always() && github.event_name == 'pull_request'
Expand Down
13 changes: 6 additions & 7 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Publish to pub.dev
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
- "v[0-9]+.[0-9]+.[0-9]+"

jobs:
prechecks:
Expand All @@ -18,7 +18,7 @@ jobs:
echo "Tag ${GITHUB_REF} does not match required format vX.Y.Z"
exit 1
fi

- name: Check main branch
run: |
git fetch origin main
Expand All @@ -39,11 +39,10 @@ jobs:
steps:
- uses: actions/checkout@v6


- uses: flutter-actions/setup-flutter@v4
with:
channel: stable
version: 3.38.8
version: 3.41.6
cache: true
cache-sdk: true
cache-key: ${{ runner.os }}-flutter-${{ hashFiles('pubspec.yaml') }}
Expand Down Expand Up @@ -92,8 +91,8 @@ jobs:
uses: ./.github/actions/changelog
with:
post-comment: false # Don't post comment for releases
exclude-types: 'chore,style'
comment-header: '## 📋 Release Notes'
exclude-types: "chore,style"
comment-header: "## 📋 Release Notes"

- name: Determine if pre-release
id: prerelease
Expand All @@ -112,4 +111,4 @@ jobs:
body: ${{ steps.changelog.outputs.changelog }}
draft: false
prerelease: ${{ steps.prerelease.outputs.prerelease }}
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
Loading