From 9dd381589cc3802e20a9681ef333ba17e935bbb5 Mon Sep 17 00:00:00 2001 From: Victoria Drake Date: Fri, 3 Jul 2020 21:05:59 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Add=20publishing=20Action?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/publish.yml | 17 +++++++++++++++++ package.json | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..3bb57f6 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,17 @@ +name: Publish to VSC Marketplace + +on: + release: + types: [published] + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: npm install + - uses: lannonbr/vsce-action@master + with: + args: "publish -p $VSCE_TOKEN" + env: + VSCE_TOKEN: ${{ secrets.PAT }} \ No newline at end of file diff --git a/package.json b/package.json index aacf126..3e9386e 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "kabukicho", "displayName": "Kabukichō", "description": "Neon vaporwave dark theme with dreamy nostalgia and hints of hazy liquid synth.", - "version": "0.0.2", + "version": "0.0.5", "publisher":"victoriadrake", "icon": "icon.png", "license": "SEE LICENSE IN LICENSE",