Skip to content

Commit

Permalink
fix(actions): fixes incorrect command in GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pavankjadda committed Jun 28, 2022
1 parent c25264e commit 8bbb18c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/npm_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Install NPM Dependencies
run: npm i --legacy-peer-deps
- name: Build project
run: npm run build:ngx-cookie-service-ssr --configuration=production
run: npm run build --configuration=production
- name: Publish to NPM
uses: JS-DevTools/npm-publish@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm_publish_ssr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Install NPM Dependencies
run: npm i --legacy-peer-deps
- name: Build project
run: npm run build --configuration production --project=ngx-cookie-service-ssr
run: npm run build:ngx-cookie-service-ssr --configuration production
- name: Publish to NPM
uses: JS-DevTools/npm-publish@v1
with:
Expand Down

0 comments on commit 8bbb18c

Please sign in to comment.