@@ -202,46 +202,46 @@ jobs:
202
202
name : artifacts-dist-manifest
203
203
path : dist-manifest.json
204
204
205
- custom-publish-pypi :
206
- needs :
207
- - plan
208
- - host
209
- if : ${{ !fromJson(needs.plan.outputs.val).announcement_is_prerelease || fromJson(needs.plan.outputs.val).publish_prereleases }}
210
- uses : ./.github/workflows/publish-pypi.yml
211
- with :
212
- plan : ${{ needs.plan.outputs.val }}
213
- secrets : inherit
214
- # publish jobs get escalated permissions
215
- permissions :
216
- " id-token " : " write"
217
- " packages " : " write"
205
+ # custom-publish-pypi:
206
+ # needs:
207
+ # - plan
208
+ # - host
209
+ # if: ${{ !fromJson(needs.plan.outputs.val).announcement_is_prerelease || fromJson(needs.plan.outputs.val).publish_prereleases }}
210
+ # uses: ./.github/workflows/publish-pypi.yml
211
+ # with:
212
+ # plan: ${{ needs.plan.outputs.val }}
213
+ # secrets: inherit
214
+ # # publish jobs get escalated permissions
215
+ # permissions:
216
+ # "id-token": "write"
217
+ # "packages": "write"
218
218
219
- custom-publish-wasm :
220
- needs :
221
- - plan
222
- - host
223
- if : ${{ !fromJson(needs.plan.outputs.val).announcement_is_prerelease || fromJson(needs.plan.outputs.val).publish_prereleases }}
224
- uses : ./.github/workflows/publish-wasm.yml
225
- with :
226
- plan : ${{ needs.plan.outputs.val }}
227
- secrets : inherit
228
- # publish jobs get escalated permissions
229
- permissions :
230
- " contents " : " read"
231
- " id-token " : " write"
232
- " packages " : " write"
219
+ # custom-publish-wasm:
220
+ # needs:
221
+ # - plan
222
+ # - host
223
+ # if: ${{ !fromJson(needs.plan.outputs.val).announcement_is_prerelease || fromJson(needs.plan.outputs.val).publish_prereleases }}
224
+ # uses: ./.github/workflows/publish-wasm.yml
225
+ # with:
226
+ # plan: ${{ needs.plan.outputs.val }}
227
+ # secrets: inherit
228
+ # # publish jobs get escalated permissions
229
+ # permissions:
230
+ # "contents": "read"
231
+ # "id-token": "write"
232
+ # "packages": "write"
233
233
234
234
# Create a GitHub Release while uploading all files to it
235
235
announce :
236
236
needs :
237
237
- plan
238
238
- host
239
- - custom-publish-pypi
240
- - custom-publish-wasm
239
+ # - custom-publish-pypi
240
+ # - custom-publish-wasm
241
241
# use "always() && ..." to allow us to wait for all publish jobs while
242
242
# still allowing individual publish jobs to skip themselves (for prereleases).
243
243
# "host" however must run to completion, no skipping allowed!
244
- if : ${{ always() && needs.host.result == 'success' && (needs.custom-publish-pypi.result == 'skipped' || needs.custom-publish-pypi.result == 'success') && (needs.custom-publish-wasm.result == 'skipped' || needs.custom-publish-wasm.result == 'success') }}
244
+ if : ${{ always() && needs.host.result == 'success' }}
245
245
runs-on : " ubuntu-20.04"
246
246
env :
247
247
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
0 commit comments