Skip to content

Commit

Permalink
Merge pull request #15 from kosukesaigusa/ci/fix_publish_workflow
Browse files Browse the repository at this point in the history
ci: fix publish workflow
  • Loading branch information
kosukesaigusa authored Dec 22, 2023
2 parents a2100ba + ee37ee7 commit 6bf6b23
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
- name: Install dependencies
run: dart pub get
run: |
cd packages/flutterfire_gen
dart pub get
- name: Publish flutterfire_gen
run: |
cd packages/flutterfire_gen
Expand All @@ -33,7 +35,9 @@ jobs:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
- name: Install dependencies
run: dart pub get
run: |
cd packages/flutterfire_gen_annotation
dart pub get
- name: Publish flutterfire_gen_annotation
run: |
cd packages/flutterfire_gen_annotation
Expand All @@ -48,7 +52,9 @@ jobs:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
- name: Install dependencies
run: dart pub get
run: |
cd packages/flutterfire_gen_utils
dart pub get
- name: Publish flutterfire_gen_utils
run: |
cd packages/flutterfire_gen_utils
Expand Down

0 comments on commit 6bf6b23

Please sign in to comment.