Skip to content

Commit

Permalink
chore: publish to open-vsx (#1255)
Browse files Browse the repository at this point in the history
* chore: publish to open-vsx

* update ovsx

* add github action publishing to open vsx

* fix action

* update ovsx

* chore: install ovsx in CI only

Co-authored-by: johnsoncodehk <[email protected]>
  • Loading branch information
lukashass and johnsoncodehk authored Oct 31, 2022
1 parent 4643fde commit 37a00cd
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 20 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: release

on:
push:
tags:
- '*'

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: 16

- run: npm i -g pnpm ovsx
- run: pnpm install --frozen-lockfile --no-optional
- run: pnpm run prepack:node && pnpm ovsx publish
working-directory: extensions/vscode-vue-language-features
env:
OVSX_PAT: ${{ secrets.OVSX_PAT }}
51 changes: 31 additions & 20 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 37a00cd

Please sign in to comment.