Skip to content

Commit

Permalink
make workflow manually runnable
Browse files Browse the repository at this point in the history
  • Loading branch information
evoactivity committed Feb 27, 2024
1 parent 99917c9 commit 9ad43a7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
on:
workflow_dispatch:
push:
branches:
- 'feature/**' # match an pushes on feature/* and feature/<any sub branch>/*
Expand Down Expand Up @@ -92,13 +93,13 @@ jobs:
- name: publish to marketplace VSCODE
if: github.ref == 'refs/heads/master'
env:
VSCODE_STORE_TOKEN: ${{ secrets.VSCODE_STORE_TOKEN }} # This token is provided by Actions, you do not need to create your own token
VSCODE_STORE_TOKEN: ${{ secrets.VSCODE_STORE_TOKEN }}
run: yarn vs:publish:ci
continue-on-error: true

- name: publish to marketplace OPEN VSX
if: github.ref == 'refs/heads/master'
env:
OPEN_VSX_STORE_TOKEN: ${{ secrets.OPEN_VSX_STORE_TOKEN }} # This token is provided by Actions, you do not need to create your own token
OPEN_VSX_STORE_TOKEN: ${{ secrets.OPEN_VSX_STORE_TOKEN }}
run: yarn ov:publish:ci
continue-on-error: true

0 comments on commit 9ad43a7

Please sign in to comment.