Skip to content

Commit

Permalink
CI: run flutter after swift
Browse files Browse the repository at this point in the history
  • Loading branch information
JssDWt committed Apr 8, 2024
1 parent ad259d3 commit 0652fd1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/publish-all-platforms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,13 @@ jobs:
needs:
- setup
- build-language-bindings
if: ${{ needs.setup.outputs.flutter == 'true' }}
- publish-swift
if: |
always() &&
${{ needs.setup.outputs.flutter == 'true' }} &&
# If swift is also published, run flutter after publishing swift
# if it is not, publish flutter anyway.
${{ needs.publish-swift.result == 'success' || needs.publish-swift.result == 'skipped' }}
uses: ./.github/workflows/publish-flutter.yml
with:
repository: ${{ needs.setup.outputs.repository }}
Expand Down

0 comments on commit 0652fd1

Please sign in to comment.