Skip to content

Commit

Permalink
Fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
temeddix committed Oct 21, 2023
1 parent 669d576 commit e52a55b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ jobs:
build:
name: ${{ matrix.runner }} / ${{ matrix.target }}
runs-on: ${{ matrix.runner }}
timeout-minutes: 60
strategy:
fail-fast: false # Important
matrix:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publication.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,22 @@ name: publication
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+*" # Should match the tag pattern set on `pub.dev`.
- "v[0-9]+.[0-9]+.[0-9]+*" # Should match the tag pattern set on `pub.dev`
workflow_dispatch:

jobs:
upload:
name: upload-all
runs-on: ubuntu-latest
permissions:
id-token: write # Required for authentication using OIDC for `pub.dev`.
id-token: write # Required for authentication using OIDC for `pub.dev`

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup Flutter SDK
uses: subosito/flutter-action@v2
- name: Setup Dart SDK
uses: dart-lang/setup-dart@v1 # Required for configuring OIDC token
with:
channel: "stable"

Expand Down

0 comments on commit e52a55b

Please sign in to comment.