diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c97103a0..880492e2 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 dist/ngx-formentry/*.* + yarn npm publish dist/ngx-formentry --access public --tag next 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 dist/ngx-formentry/*.* + run: yarn config set npmAuthToken "${NODE_AUTH_TOKEN}" && yarn npm publish dist/ngx-formentry --access public --tag latest env: NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}