Skip to content

Commit

Permalink
dont use shared flow
Browse files Browse the repository at this point in the history
  • Loading branch information
bw-flagship committed Aug 30, 2023
1 parent 15a41d9 commit f417a5b
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,26 @@ jobs:

publish:
# needs: [test]
name: Publish
permissions:
id-token: write
uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1
id-token: write # This is required for authentication using OIDC
runs-on: ubuntu-latest
timeout-minutes: 5

steps:
- uses: actions/checkout@v3

- uses: dart-lang/setup-dart@v1

- uses: subosito/flutter-action@v2
with:
channel: "stable"

- name: Install dependencies
run: dart pub get

- name: code format
run: dart format lib/*/*.dart lib/*.dart

- name: Publish
run: dart pub publish --force

0 comments on commit f417a5b

Please sign in to comment.