Skip to content

Initial Commit

Initial Commit #19

Workflow file for this run

name: ci
on:
push:
branches:
- main
tags:
- '*'
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v6
with:
node-version: 22
- uses: actions/checkout@v6
with:
fetch-depth: 0
- run: npm install --ignore-scripts
- run: npm run build
- run: npm run package
- uses: actions/upload-artifact@v7
with:
name: vsix-package
path: ./*.vsix
retention-days: 1
release:
needs: build
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v6
- uses: actions/download-artifact@v4
with:
path: artifacts
- uses: softprops/action-gh-release@v2
with:
files: artifacts/*/*.vsix
publish-open-vsx-registry:
needs:
- release
name: Open VSX
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v6
- uses: actions/download-artifact@v4
with:
path: artifacts
- uses: actions/setup-node@v6
with:
node-version: 22
- name: Publish
run: |
npx ovsx publish -i artifacts/*/*.vsix -p ${{secrets.OPEN_VSX_TOKEN}}
publish-vscode-marketplace:
needs:
- release
name: VS Code Marketplace
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v6
- uses: actions/download-artifact@v4
with:
path: artifacts
- uses: actions/setup-node@v6
with:
node-version: 22
- name: Publish
run: |
npx @vscode/vsce publish -i artifacts/*/*.vsix -p ${{secrets.VS_MARKETPLACE_TOKEN}}