Skip to content

Commit

Permalink
Replaced dart publish step with custom implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
michalowskim committed Jul 8, 2024
1 parent ca25758 commit 0e0ae91
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ on:

# Publish using the reusable workflow from dart-lang.
jobs:
build:
publish:
permissions:
id-token: write # Required for authentication using OIDC
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
Expand All @@ -19,7 +21,5 @@ jobs:
run: flutter pub get
- name: Analyze
run: flutter analyze
publish:
permissions:
id-token: write # Required for authentication using OIDC
uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1
- name: Publish
run: dart pub publish --force

0 comments on commit 0e0ae91

Please sign in to comment.