Skip to content
This repository has been archived by the owner on Jun 30, 2024. It is now read-only.

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonwilliams committed Oct 9, 2020
1 parent 8ee95d9 commit 0e987b8
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

name: Publish Release
on:
release:
types: [published]

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.sha }}
- uses: actions/setup-node@v2-beta
with:
node-version: "12"
- run: yarn install
- name: Install VSCE
run: yarn add vsce
- name: Publish
run: yarn vsce publish -p $VSCE_TOKEN
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
"scripts": {
"format": "prettier --write .",
"lint": "prettier --check .",
"compile": "webpack --mode production",
"compile": "webpack --mode development",
"test": "node ./src/tests/runTests.js",
"webpack": "webpack --mode development",
"watch": "webpack --mode development --watch",
"vscode:prepublish": "webpack --mode production"
},
"activationEvents": [
"onLanguage:typescriptreact"
"onLanguage:typescriptreact",
"onLanguage:javascriptreact"
],
"contributes": {
"languages": [
Expand Down

0 comments on commit 0e987b8

Please sign in to comment.