We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b74dbf9 commit 847ec45Copy full SHA for 847ec45
.github/workflows/publish-template.yml
@@ -63,13 +63,13 @@ jobs:
63
run: echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' > .npmrc
64
65
- name: Publish to npm
66
- if: ${{ inputs.lib-name }} != 'msal-angular'
+ if: inputs.lib-name != 'msal-angular'
67
env:
68
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
69
run: npm publish
70
71
- name: Deploy to npm (Angular only)
72
- if: ${{ inputs.lib-name }} == 'msal-angular'
+ if: inputs.lib-name == 'msal-angular'
73
74
75
run: npm run deploy
@@ -80,4 +80,4 @@ jobs:
80
- name: Check npm for package availability
81
run: node ../../release-scripts/checkPackageAvailability.js ${{ inputs.path }}/${{ inputs.lib-name }}
82
83
-
+
0 commit comments