Skip to content

Commit

Permalink
(fix) publish assets from the correct folder (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldkibet authored Oct 2, 2023
1 parent f32decb commit 1ed719b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down Expand Up @@ -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 }}

0 comments on commit 1ed719b

Please sign in to comment.