Skip to content

build(deps): bump actions/checkout from 6.0.1 to 6.0.2 (#108) #155

build(deps): bump actions/checkout from 6.0.1 to 6.0.2 (#108)

build(deps): bump actions/checkout from 6.0.1 to 6.0.2 (#108) #155

Workflow file for this run

name: Release
on:
push:
branches:
- main
permissions:
contents: read
jobs:
lint:
uses: ./.github/workflows/lint.yml
release:
name: Release
runs-on: ubuntu-latest
needs: lint
environment: vsce
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Node.js
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: 22
- name: Install
run: yarn install --frozen-lockfile
- name: Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VSCE_PAT: ${{ secrets.VSCE_PAT }}