From aa8864916d8c9c33d7a16edc96da3f37f16cec28 Mon Sep 17 00:00:00 2001 From: Vadym Parakonnyi Date: Thu, 29 Feb 2024 20:36:54 +0100 Subject: [PATCH] chore: proper dist folder for npm release pipeline --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index fadc767..aef783a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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 @@ -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