Skip to content

ci: always build and upload the vsix artifact (#32) #54

ci: always build and upload the vsix artifact (#32)

ci: always build and upload the vsix artifact (#32) #54

Workflow file for this run

on:
push:
tags:
- 'v[0-9]*'
branches:
- 'main'
pull_request:
branches:
- 'main'
name: Deploy Extension
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: yarn install --immutable --immutable-cache --check-cache
- name: Build Extension
run: yarn vsix
- name: Upload extension to Actions Artifact
uses: actions/upload-artifact@v3
with:
name: shiny-vscode
path: 'shiny*.vsix'
- name: Publish to Open VSX Registry
uses: HaaLeo/publish-vscode-extension@v1
if: ${{ github.repository_owner == 'posit-dev' }}
with:
pat: ${{ secrets.OPEN_VSX_TOKEN }}
dryRun: ${{ !(github.event_name == 'push' && github.ref_type == 'tag') }}
- name: Publish to Visual Studio Marketplace
uses: HaaLeo/publish-vscode-extension@v1
if: ${{ github.repository_owner == 'posit-dev' }}
with:
pat: ${{ secrets.VSCE_PAT }}
registryUrl: https://marketplace.visualstudio.com
dryRun: ${{ !(github.event_name == 'push' && github.ref_type == 'tag') }}