Skip to content

0.0.49

0.0.49 #87

Workflow file for this run

name: BETA Release
on:
push:
branches:
- dev
workflow_dispatch:
jobs:
build:
name: "Build and release"
runs-on: ubuntu-latest
if: contains(github.event.head_commit.message, '#release')
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- name: Install the dependencies
run: npm ci
- name: Publish
run: npx @vscode/vsce publish -p ${{ secrets.VSCE_PAT }} --baseImagesUrl https://raw.githubusercontent.com/estruyf/vscode-demo-time/dev
- name: Publish to open-vsx.org
run: npx ovsx publish -p ${{ secrets.OPEN_VSX_PAT }}