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",