Skip to content

Commit e952161

Browse files
committed
Fix bad CI
1 parent d8948e0 commit e952161

File tree

3 files changed

+5
-14
lines changed

3 files changed

+5
-14
lines changed

.github/workflows/npm-publish.yml

+2-11
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,16 @@ on:
88
types: [created]
99

1010
jobs:
11-
build:
12-
runs-on: ubuntu-latest
13-
steps:
14-
- uses: actions/checkout@v2
15-
- uses: actions/setup-node@v2
16-
with:
17-
node-version: 14
18-
- run: npm install
19-
- run: npm run compile
20-
2111
publish-npm:
22-
needs: build
2312
runs-on: ubuntu-latest
2413
steps:
2514
- uses: actions/checkout@v2
2615
- uses: actions/setup-node@v2
2716
with:
2817
node-version: 14
2918
registry-url: https://registry.npmjs.org/
19+
- run: npm install
20+
- run: npm run compile
3021
- run: npm publish
3122
env:
3223
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vscode-extension-telemetry",
33
"description": "A module for first party microsoft extensions to report consistent telemetry.",
4-
"version": "0.3.0",
4+
"version": "0.3.1",
55
"author": {
66
"name": "Microsoft Corporation"
77
},

0 commit comments

Comments
 (0)