Skip to content

Publish Extension

Publish Extension #1

Workflow file for this run

name: Publish Extension
on:
workflow_dispatch:
inputs:
version:
description: 'Version'
default: 'minor x.1.0'
type: choice
options:
- patch x.x.1
- minor x.1.0
- major 1.0.0
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install VSCE
run: npm i @vscode/vsce -g
- name: Setup Github Actions
run: |
git config --global user.name "RedCMD"
git config --global user.email "[email protected]"
git add .
git diff-index --quiet HEAD || git commit -m "Sync Github Actions"
- name: Publish Release
run: |
vsce publish ${{ github.event.inputs.version }} -p ${{ secrets.VSCE_PAT }}
git push