Skip to content

Commit

Permalink
chore: proper dist folder for npm release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
voznik committed Feb 29, 2024
1 parent 80dbf6b commit aa88649
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
# Publish version to public repository
- name: Publish release version
if: startsWith(github.event.inputs.release-type, 'pre') != true
working-directory: packages/rxdb
working-directory: dist/packages/rxdb
run: |
npm pack
npm publish --access public --non-interactive --no-git-tag-version --tag latest
Expand All @@ -104,7 +104,7 @@ jobs:
# Publish version to public repository
- name: Publish pre-release version
if: startsWith(github.event.inputs.release-type, 'pre')
working-directory: packages/rxdb
working-directory: dist/packages/rxdb
run: |
npm pack
npm publish --access public --non-interactive --no-git-tag-version --tag dev
Expand Down

0 comments on commit aa88649

Please sign in to comment.