Skip to content

Commit

Permalink
Add publish-mountable to the deps list of publish-vscode-extension (#535
Browse files Browse the repository at this point in the history
)
  • Loading branch information
whitphx authored Mar 24, 2023
1 parent 41d49c4 commit 9c3c31f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,9 @@ jobs:

publish-vscode-extension:
if: ${{ !failure() && startsWith(github.ref, 'refs/tags/v') }} # `!failure()` is necessary to avoid skipping this job after successful build: https://github.com/actions/runner/issues/491
needs: [test-build-vscode-extension]
needs:
- test-build-vscode-extension
- publish-mountable # The VSC extension uses the same version of published @stlite/mountable, so it must be released in order.

permissions:
contents: write # Necessary for creating releases: https://github.com/softprops/action-gh-release#permissions
Expand Down

0 comments on commit 9c3c31f

Please sign in to comment.