Skip to content

v2024.5.1

v2024.5.1 #27

Workflow file for this run

name: Publish
on:
push:
tags:
- v*
jobs:
publish-vsce:
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'djlint' }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
check-latest: true
- run: npm ci
- run: npx --yes @vscode/vsce publish
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
publish-ovsx:
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'djlint' }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
check-latest: true
- run: npm ci
- run: npx --yes ovsx publish
env:
OVSX_PAT: ${{ secrets.OVSX_PAT }}