From e95216138798b95bc0941a1da5aab13e13e09dcb Mon Sep 17 00:00:00 2001 From: Logan Ramos Date: Fri, 27 Aug 2021 10:56:49 -0400 Subject: [PATCH] Fix bad CI --- .github/workflows/npm-publish.yml | 13 ++----------- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 5 insertions(+), 14 deletions(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 900657b..4b4a653 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -8,18 +8,7 @@ on: types: [created] jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: 14 - - run: npm install - - run: npm run compile - publish-npm: - needs: build runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -27,6 +16,8 @@ jobs: with: node-version: 14 registry-url: https://registry.npmjs.org/ + - run: npm install + - run: npm run compile - run: npm publish env: NODE_AUTH_TOKEN: ${{secrets.npm_token}} diff --git a/package-lock.json b/package-lock.json index 61bc802..7869837 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "vscode-extension-telemetry", - "version": "0.3.0", + "version": "0.3.1", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "0.3.0", + "version": "0.3.1", "license": "MIT", "devDependencies": { "@microsoft/applicationinsights-web": "^2.6.4", diff --git a/package.json b/package.json index 599c20b..7ceb8a8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "vscode-extension-telemetry", "description": "A module for first party microsoft extensions to report consistent telemetry.", - "version": "0.3.0", + "version": "0.3.1", "author": { "name": "Microsoft Corporation" },