diff options
author | Alex <i@neonxp.dev> | 2023-08-06 01:42:04 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-06 01:42:04 +0300 |
commit | 62d978d8a9ac7096b8fa712cb80ba9f02f134af4 (patch) | |
tree | d946a9086a977cf69b9bc53fa262a18f1a8ef6b3 /.github/workflows | |
parent | a7ebc77e89a09bec4a9fedc9ffdaceca7571c61e (diff) |
Update publish.yml
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/publish.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e029f04..beb5f92 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -3,7 +3,7 @@ on: push: name: Deploy Extension jobs: - deploy: + deploy-vsx: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -14,6 +14,13 @@ jobs: uses: HaaLeo/publish-vscode-extension@v0 with: pat: ${{ secrets.OPEN_VSX_TOKEN }} + deploy-ms: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: 12 - name: Publish to Visual Studio Marketplace uses: HaaLeo/publish-vscode-extension@v0 with: |