Skip to content

1.2.1

1.2.1 #17

Workflow file for this run

# Github Actions configuration file
name: Build
on:
release:
types:
- published
jobs:
publish-extension:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: latest
- run: yarn install --immutable --immutable-cache --check-cache
- name: Package Extension
id: packageExtension
uses: HaaLeo/publish-vscode-extension@v1
with:
pat: stub
dryRun: true
preRelease: ${{ github.event.action == 'prereleased' }}
yarn: true
- name: Upload to Github release
uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
file: "*.vsix"
tags: true
draft: false