Skip to content

Commit 6d2cc0a

Browse files
committed
Move back to npm :(
1 parent 5b14164 commit 6d2cc0a

File tree

5 files changed

+4031
-4516
lines changed

5 files changed

+4031
-4516
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
push:
66
tags:
77
- v*
8+
branches:
9+
- main
810

911
defaults:
1012
run:
@@ -23,11 +25,14 @@ jobs:
2325
node-version: "latest"
2426
cache: "npm"
2527
cache-dependency-path: "package-lock.json"
26-
- run: npm install
27-
- run: npx vsce package
28+
- name: Installing dependencies
29+
run: npm install
30+
- name: Packaging
31+
run: npx vsce package
2832
- name: Upload artifact
2933
uses: actions/upload-artifact@v4
3034
with:
3135
path: vscode-clazy-*.vsix
32-
- run: npx vsce publish -p "${{ secrets.VSCE_TOKEN }}"
36+
- name: Publish
37+
run: npx vsce publish -p "${{ secrets.VSCE_TOKEN }}"
3338
if: startsWith(github.ref, 'refs/tags/')

.vscodeignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ src/**
55
node_modules/**
66
.gitignore
77
.yarnrc
8-
esbuild.js
8+
esbuild.mjs
99
**/tsconfig.json
1010
**/eslint.config.mjs
1111
**/prettier.config.mjs

0 commit comments

Comments
 (0)