Skip to content

chore: bump ovsx from 0.9.5 to 0.10.1 #4903

chore: bump ovsx from 0.9.5 to 0.10.1

chore: bump ovsx from 0.9.5 to 0.10.1 #4903

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 }}
- name: Send Slack notification
if: ${{ always() }}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
uses: 8398a7/action-slack@v3
with:
status: ${{ job.status }}
text: "Tag: ${{ github.ref_name }} release to Visual Studio Marketplace status: ${{ job.status == 'success' && 'succeeded' || 'failed' }} :${{ job.status == 'success' && 'tada' || 'disappointed' }}:"
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 }}
- name: Send Slack notification
if: ${{ always() }}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
uses: 8398a7/action-slack@v3
with:
status: ${{ job.status }}
text: "Tag: ${{ github.ref_name }} release to openvsx marketplace status: ${{ job.status == 'success' && 'succeeded' || 'failed' }} :${{ job.status == 'success' && 'tada' || 'disappointed' }}:"