Skip to content

Commit

Permalink
Add installing flutter step before publish step
Browse files Browse the repository at this point in the history
  • Loading branch information
michalowskim committed Jul 8, 2024
1 parent 2d012fd commit 1500086
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,15 @@ jobs:
publish:
permissions:
id-token: write # Required for authentication using OIDC
uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.22.2'
- name: Install dependencies
run: flutter pub get
- name: Analyze
run: flutter analyze
- uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1

0 comments on commit 1500086

Please sign in to comment.