feat: create legacy icon theme (#7) #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🚀 Publish to the Visual Studio Marketplace | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
inputs: | |
version: | |
description: The version to release (e.g. x.x.x or major, minor, patch) | |
required: false | |
no-publish: | |
type: boolean | |
description: Skip publishing to the marketplace | |
default: false | |
permissions: | |
contents: write | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- run: npm clean-install | |
- if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.version }} | |
run: npm version ${{ github.event.inputs.version }} --no-git-tag-version | |
- run: | | |
npm exec vsce package | |
echo "filepath=$(ls *.vsix)" >> $GITHUB_ENV | |
echo "version=$(npm pkg get version | tr -d \")" >> $GITHUB_ENV | |
- if: ${{ !github.event.inputs.no-publish }} | |
env: | |
VSCE_PAT: ${{ secrets.VSCE_PAT }} | |
run: npm exec vsce publish -- --packagePath $filepath | |
- env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: gh release create v$version $filepath --generate-notes |