File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1616jobs :
1717 npm :
1818 runs-on : ubuntu-latest
19- if : ${{ !inputs.skipNpm }}
2019 permissions :
2120 id-token : write
2221
@@ -33,17 +32,19 @@ jobs:
3332 run : npm install -g npm@latest
3433
3534 - name : npm publish coalesce-vue
35+ if : ${{ !inputs.skipNpm }}
3636 run : npm publish ./coalesce-vue/*.tgz --tag ${{ inputs.prereleaseSlug || 'latest' }} --access public
3737
3838 - name : npm publish coalesce-mcp
39+ if : ${{ !inputs.skipNpm }}
3940 run : npm publish ./coalesce-mcp/*.tgz --tag ${{ inputs.prereleaseSlug || 'latest' }} --access public
4041
4142 - name : npm publish coalesce-vue-vuetify
43+ if : ${{ !inputs.skipNpm }}
4244 run : for f in ./coalesce-vue-vuetify*/*.tgz; do npm publish $f --tag ${{ inputs.prereleaseSlug || 'latest' }} --access public; done
4345
4446 nuget :
4547 runs-on : ubuntu-latest
46- if : ${{ !inputs.skipNuget }}
4748
4849 steps :
4950 - name : Download all workflow run artifacts
5657 user : ascott18
5758
5859 - name : dotnet nuget push
60+ if : ${{ !inputs.skipNuget }}
5961 run : dotnet nuget push "**/*.nupkg" -s https://api.nuget.org/v3/index.json --api-key ${{ steps.login.outputs.NUGET_API_KEY }}
6062
6163 docs :
Original file line number Diff line number Diff line change 7575 publish-template :
7676 runs-on : ubuntu-latest
7777 needs : [build-template]
78- if : ${{ !inputs.skipTemplate }}
7978
8079 steps :
8180 - name : Download Artifacts
9089 user : ascott18
9190
9291 - name : dotnet nuget push
92+ if : ${{ !inputs.skipTemplate }}
9393 run : dotnet nuget push "**/*.nupkg" -s https://api.nuget.org/v3/index.json --api-key ${{ steps.login.outputs.NUGET_API_KEY }}
You can’t perform that action at this time.
0 commit comments