Skip to content

fix: datapilot code block ui #4756

fix: datapilot code block ui

fix: datapilot code block ui #4756

Workflow file for this run

on:
push:
branches:
- master
pull_request:
branches:
- master
release:
types:
- created
jobs:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run common build steps
uses: ./.github/actions/common-build
release-vsstudio-marketplace:
runs-on: ubuntu-latest
if: success() && startsWith( github.ref, 'refs/tags/')
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run common build steps
uses: ./.github/actions/common-build
- name: Publish Visual Studio Marketplace
run: |
if [ "${{ github.event_name }}" == "release" ] && [ "${{ github.event.release.prerelease }}" == "true" ]; then
npm run deploy-vscode -- --pre-release
else
npm run deploy-vscode
fi
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
release-openvsx-marketplace:
runs-on: ubuntu-latest
if: success() && startsWith( github.ref, 'refs/tags/')
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run common build steps
uses: ./.github/actions/common-build
- name: Publish OpenVSX Marketplace
run: |
if [ "${{ github.event_name }}" == "release" ] && [ "${{ github.event.release.prerelease }}" == "true" ]; then
npm run deploy-openvsx -- --pre-release
else
npm run deploy-openvsx
fi
env:
OVSX_PAT: ${{ secrets.OVSX_PAT }}