From 1ed719b9815ca25971e85a1b4882e0fde9a34e43 Mon Sep 17 00:00:00 2001 From: Donald Kibet Date: Mon, 2 Oct 2023 19:19:59 +0300 Subject: [PATCH] (fix) publish assets from the correct folder (#84) --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0c00633e..c97103a0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -86,7 +86,7 @@ jobs: run: | yarn config set npmAlwaysAuth true yarn config set npmAuthToken $NPM_AUTH_TOKEN - yarn npm publish --access public --tag next + yarn npm publish --access public --tag next dist/ngx-formentry/*.* env: NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} @@ -124,6 +124,6 @@ jobs: run: yarn turbo build:lib --color --concurrency=5 - name: Publish release - run: yarn config set npmAuthToken "${NODE_AUTH_TOKEN}" && yarn npm publish --access public --tag latest + run: yarn config set npmAuthToken "${NODE_AUTH_TOKEN}" && yarn npm publish --access public --tag latest dist/ngx-formentry/*.* env: NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}