Skip to content

Commit

Permalink
Rchiodo/fix build vsix (#8118)
Browse files Browse the repository at this point in the history
* Support dispatch for release build

* Typo

* Update to latest middleware with token edit fix (#8105)
  • Loading branch information
rchiodo committed Nov 4, 2021
1 parent 9dfd85e commit a71b1f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
# echo "release_channel=insider" >> $GITHUB_ENV

- name: release
if: github.event_name == 'push' && contains(github.ref, 'refs/heads/release')
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && contains(github.ref, 'refs/heads/release')
run: |
echo "vsix_name=ms-toolsai-jupyter-release.vsix" >> $GITHUB_ENV
echo "test_matrix_os=[\"ubuntu-latest\"]" >> $GITHUB_ENV
Expand Down

0 comments on commit a71b1f8

Please sign in to comment.