Skip to content

Commit

Permalink
Merge pull request #169 from codota/boaz-rolling
Browse files Browse the repository at this point in the history
Fixes
  • Loading branch information
boaz-codota authored Oct 26, 2020
2 parents fce5b28 + df41c06 commit a544de1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continues_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
- name: Install
run: npm ci
- name: Package
run: npm run package
run: npm run vsce:package
7 changes: 5 additions & 2 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install
run: npm ci
- name: Package
run: npm run package
run: npm run vsce:package
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -46,4 +46,7 @@ jobs:
asset_name: tabnine-vscode.vsix
asset_path: ./tabnine-vscode-${{ steps.package-version.outputs.current-version }}.vsix
asset_content_type: application/octet-stream
- run: npm publish -- -p ${{ secrets.VSCE_TOKEN }} ${{ steps.package-version.outputs.current-version }}
- name: Publish
run: npm vsce:publish -- ${{ steps.package-version.outputs.current-version }}
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
"compile": "tsc -watch -p ./",
"vscode:uninstall": "node ./out/uninstall",
"test": "tsc -p ./ && node ./out/test/runTest.js",
"package": "vsce package",
"publish": "vsce publish",
"vsce:package": "vsce package",
"vsce:publish": "vsce publish",
"teamcity:test": "tsc -p ./ && node ./out/test/runTest.js"
},
"devDependencies": {
Expand Down

0 comments on commit a544de1

Please sign in to comment.