Skip to content

Commit

Permalink
correctly publish release version to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasRentzCAU committed Jul 25, 2022
1 parent 83efcf1 commit caaefeb
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Workflow that publishes the VSCode extension to the VS Marketplace and attaches
# assets to the new release.
# Workflow that publishes the VS Code extension to the VS Marketplace and
# Open VSX, the packages to npm, and attaches assets to the new release.

name: publish

Expand All @@ -24,7 +24,14 @@ jobs:
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
OVSX_PAT: ${{ secrets.OVSX_PAT }}
- run: yarn publish
- name: Publish klighd-interactive
run: yarn publish
working-directory: ./packages/klighd-interactive
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- name: Publish klighd-core
run: yarn publish
working-directory: ./packages/klighd-core
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
release-assets:
Expand Down

0 comments on commit caaefeb

Please sign in to comment.