Skip to content

Commit

Permalink
workflow: Run build-vsix even if lsp-release was skipped
Browse files Browse the repository at this point in the history
  • Loading branch information
alcarney committed Jun 7, 2024
1 parent 9051a0a commit c929555
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/lsp-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,10 @@ jobs:

build-vsix:
needs: [trigger, lsp-release]
if: needs.trigger.outputs.code
if: |
always() &&
needs.trigger.outputs.code &&
(needs.lsp-release.result == 'success' || needs.lsp-release.result == 'skipped')
runs-on: ubuntu-latest
steps:
- uses: 'actions/checkout@v4'
Expand Down

0 comments on commit c929555

Please sign in to comment.