Skip to content

Commit

Permalink
vscode-tilt: drop use of vsce orb
Browse files Browse the repository at this point in the history
I was hitting this error: microsoft/vscode-vsce#341
  • Loading branch information
Matt Landis committed Apr 18, 2022
1 parent fd1dffb commit 77a3a6b
Showing 1 changed file with 6 additions and 19 deletions.
25 changes: 6 additions & 19 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
version: 2.1
orbs:
slack: circleci/slack@3.4.0
vsce: uraway/vsce@0.0.4
jobs:
test:
executor: vsce/node-browsers
steps:
- checkout
- run: npm install
- run: npm run check
publish:
executor: vsce/node-browsers
steps:
- checkout
- run: npx vsce publish -p "$VSCODE_MARKETPLACE_TOKEN"
workflows:
build:
jobs:
Expand All @@ -21,7 +25,7 @@ workflows:
only: never-release-on-a-branch
tags:
only: /v[0-9]+.[0-9]+.[0-9]+/
- vsce/publish:
- publish:
context:
- Tilt VSCE Context
- Tilt Slack Context
Expand All @@ -30,23 +34,6 @@ workflows:
only: never-release-on-a-branch
tags:
only: /v[0-9]+.[0-9]+.[0-9]+/
post-install-steps:
- save_cache:
key: 'v1-node-cache-{{ .Branch }}-{{ checksum "package-lock.json" }}'
paths:
- node_modules
- slack/notify:
message: "Publishing vscode-tilt extension to the marketplace"
pre-install-steps:
- restore_cache:
keys:
- >-
v1-node-cache-{{ .Branch }}-{{ checksum "package-lock.json"
}}
- 'v1-node-cache-{{ .Branch }}'
- v1-node-cache-
publish-token-variable: VSCODE_MARKETPLACE_TOKEN
push-git-tag: false
requires:
- test

0 comments on commit 77a3a6b

Please sign in to comment.