-
Notifications
You must be signed in to change notification settings - Fork 4
39 lines (39 loc) · 958 Bytes
/
publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Publish
on:
push:
tags:
- v*
workflow_dispatch:
jobs:
publish-vsce:
runs-on: ubuntu-24.04
if: ${{ github.repository_owner == 'djlint' }}
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- 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-24.04
if: ${{ github.repository_owner == 'djlint' }}
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- 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 }}