Skip to content

build(deps): bump lodash from 4.17.23 to 4.18.1 in /vscode-make-ls (#1) #10

build(deps): bump lodash from 4.17.23 to 4.18.1 in /vscode-make-ls (#1)

build(deps): bump lodash from 4.17.23 to 4.18.1 in /vscode-make-ls (#1) #10

Workflow file for this run

name: Release
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- uses: actions/setup-node@v4
with:
node-version: "20"
- name: Build and publish VS Code extensions
env:
VSCODE_PUBLISH_TOKEN: ${{ secrets.VSCODE_PUBLISH_TOKEN }}
OPVSX_PUBLISH_TOKEN: ${{ secrets.OPVSX_PUBLISH_TOKEN }}
run: |
cd vscode-make-ls
npm ci
node scripts/package.js
- name: Restore git state after vsix build
run: git checkout -- vscode-make-ls/package.json
- uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}