File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -128,12 +128,12 @@ jobs:
128128 - name : publish mage service
129129 run : |
130130 npm config set -- '//registry.npmjs.org/:_authToken' ${{ secrets.NPM_TOKEN }}
131- npm publish --access public $(ls -1 ngageoint-mage.service-*.tgz) ${{inputs.is_prerelease && '--tag beta'}} || echo "skipping mage service publish..."
131+ npm publish --access public $(ls -1 ngageoint-mage.service-*.tgz) ${{( inputs.is_prerelease && '--tag beta') || ' '}} || echo "skipping mage service publish..."
132132 - name : publish mage web
133133 run : |
134134 npm config set -- '//registry.npmjs.org/:_authToken' ${{ secrets.NPM_TOKEN }}
135- npm publish --access public $(ls -1 ngageoint-mage.web-app-*.tgz) ${{inputs.is_prerelease && '--tag beta'}} || echo "skipping mage web app publish..."
135+ npm publish --access public $(ls -1 ngageoint-mage.web-app-*.tgz) ${{( inputs.is_prerelease && '--tag beta') || ' '}} || echo "skipping mage web app publish..."
136136 - name : publish mage core
137137 run : |
138138 npm config set -- '//registry.npmjs.org/:_authToken' ${{ secrets.NPM_TOKEN }}
139- npm publish --access public $(ls -1 ngageoint-mage.web-core-lib-*.tgz) ${{inputs.is_prerelease && '--tag beta'}} || echo "skipping mage core publish..."
139+ npm publish --access public $(ls -1 ngageoint-mage.web-core-lib-*.tgz) ${{( inputs.is_prerelease && '--tag beta') || ' '}} || echo "skipping mage core publish..."
You can’t perform that action at this time.
0 commit comments