Skip to content

Commit

Permalink
fix(pipeline): fixing syntax error in deploy.yml file (#3135)
Browse files Browse the repository at this point in the history
Co-authored-by: Priya Kesari <[email protected]>
  • Loading branch information
Kesari3008 and Kesari3008 authored Oct 8, 2023
1 parent 96f6bc3 commit effbab3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,9 @@ jobs:
path: '**/dist'
key: dist-${{ env.rid }}

- name: Add NPM token
run: echo "npmAuthToken: ${{env.token}}" >> ~/.yarnrc.yml
- name: Add NPM token to .yarnrc.yml file
run: |
echo "npmAuthToken: ${{ env.token }}" >> ~/.yarnrc.yml
- name: Synchronize Packages
run: |
Expand Down

0 comments on commit effbab3

Please sign in to comment.