Skip to content

v2.8.1

v2.8.1 #16

Workflow file for this run

name: Build And Release
on:
push:
tags: [v*]
jobs:
build:
strategy:
matrix:
node-version: [20.x]
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- run: npm ci && npm run package
- env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAG_NAME: ${{ github.ref_name }}
run:
gh release create $TAG_NAME --generate-notes --notes "[Download VSIX package](https://marketplace.visualstudio.com/_apis/public/gallery/publishers/thqby/vsextensions/vscode-autohotkey2-lsp/${TAG_NAME/v}/vspackage)" vscode-autohotkey2-lsp-${TAG_NAME/v}.vsix
shell: bash