Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,14 +114,6 @@ jobs:
working-directory: packages/flet
run: flutter test

- name: Patch pubspec version for release
if: ${{ github.ref_type == 'tag' }}
shell: bash
working-directory: packages/flet
run: |
source "$SCRIPTS/common.sh"
patch_pubspec_version ./pubspec.yaml "$PKG_VER"

- name: Install dependencies
shell: bash
working-directory: packages/flet
Expand All @@ -132,6 +124,14 @@ jobs:
working-directory: packages/flet
run: dart pub publish --dry-run

- name: Patch pubspec version for release
if: ${{ github.ref_type == 'tag' }}
shell: bash
working-directory: packages/flet
run: |
source "$SCRIPTS/common.sh"
patch_pubspec_version ./pubspec.yaml "$PKG_VER"

- name: Publish to pub.dev (Release)
if: ${{ github.ref_type == 'tag' }}
env:
Expand Down
Loading