Skip to content

Bump @vscode/vsce from 2.22.0 to 2.23.0 #54

Bump @vscode/vsce from 2.22.0 to 2.23.0

Bump @vscode/vsce from 2.22.0 to 2.23.0 #54

Workflow file for this run

name: Create MetaModelica VS Code Extension
on:
push:
branches:
- main
tags:
- "v*.*.*"
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup npm
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install the dependencies
run: npm install
- name: Build package
run: npm run build
- name: Archive vsix package
uses: actions/upload-artifact@v4
with:
name: metamodelica.vsix
path: metamodelica-*.vsix
release:
if: startsWith(github.ref, 'refs/tags/')
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/download-artifact@v4
with:
name: metamodelica.vsix
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
metamodelica-*.vsix
fail_on_unmatched_files: true
generate_release_notes: true
append_body: true