@@ -315,65 +315,69 @@ jobs:
315
315
uses : pypa/gh-action-pypi-publish@release/v1
316
316
if : ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }}
317
317
with :
318
- packages_dir : python/mcap/dist
319
- repository_url : https://test.pypi.org/legacy/
320
- skip_existing : true
318
+ packages-dir : python/mcap/dist
319
+ repository-url : https://test.pypi.org/legacy/
320
+ skip-existing : true
321
+ attestations : false # https://github.com/pypa/gh-action-pypi-publish/issues/283#issuecomment-2499296440
321
322
322
323
- name : Publish mcap-protobuf-support to TestPyPI
323
324
uses : pypa/gh-action-pypi-publish@release/v1
324
325
if : ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }}
325
326
with :
326
- repository_url : https://test.pypi.org/legacy/
327
- skip_existing : true
328
- packages_dir : python/mcap-protobuf-support/dist
327
+ repository-url : https://test.pypi.org/legacy/
328
+ skip-existing : true
329
+ packages-dir : python/mcap-protobuf-support/dist
330
+ attestations : false # https://github.com/pypa/gh-action-pypi-publish/issues/283#issuecomment-2499296440
329
331
330
332
- name : Publish mcap-ros1-support to TestPyPI
331
333
uses : pypa/gh-action-pypi-publish@release/v1
332
334
if : ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }}
333
335
with :
334
- repository_url : https://test.pypi.org/legacy/
335
- skip_existing : true
336
- packages_dir : python/mcap-ros1-support/dist
336
+ repository-url : https://test.pypi.org/legacy/
337
+ skip-existing : true
338
+ packages-dir : python/mcap-ros1-support/dist
339
+ attestations : false # https://github.com/pypa/gh-action-pypi-publish/issues/283#issuecomment-2499296440
337
340
338
341
- name : Publish mcap-ros2-support to TestPyPI
339
342
uses : pypa/gh-action-pypi-publish@release/v1
340
343
if : ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }}
341
344
with :
342
- repository_url : https://test.pypi.org/legacy/
343
- skip_existing : true
344
- packages_dir : python/mcap-ros2-support/dist
345
+ repository-url : https://test.pypi.org/legacy/
346
+ skip-existing : true
347
+ packages-dir : python/mcap-ros2-support/dist
348
+ attestations : false # https://github.com/pypa/gh-action-pypi-publish/issues/283#issuecomment-2499296440
345
349
346
350
- name : Publish mcap to PyPI
347
351
if : |
348
352
!github.event.pull_request.head.repo.fork &&
349
353
startsWith(github.ref, 'refs/tags/releases/python/mcap/v')
350
354
uses : pypa/gh-action-pypi-publish@release/v1
351
355
with :
352
- packages_dir : python/mcap/dist
356
+ packages-dir : python/mcap/dist
353
357
354
358
- name : Publish mcap-protobuf-support to PyPI
355
359
if : |
356
360
!github.event.pull_request.head.repo.fork &&
357
361
startsWith(github.ref, 'refs/tags/releases/python/mcap-protobuf-support/v')
358
362
uses : pypa/gh-action-pypi-publish@release/v1
359
363
with :
360
- packages_dir : python/mcap-protobuf-support/dist
364
+ packages-dir : python/mcap-protobuf-support/dist
361
365
362
366
- name : Publish mcap-ros1-support to PyPI
363
367
if : |
364
368
!github.event.pull_request.head.repo.fork &&
365
369
startsWith(github.ref, 'refs/tags/releases/python/mcap-ros1-support/v')
366
370
uses : pypa/gh-action-pypi-publish@release/v1
367
371
with :
368
- packages_dir : python/mcap-ros1-support/dist
372
+ packages-dir : python/mcap-ros1-support/dist
369
373
370
374
- name : Publish mcap-ros2-support to PyPI
371
375
if : |
372
376
!github.event.pull_request.head.repo.fork &&
373
377
startsWith(github.ref, 'refs/tags/releases/python/mcap-ros2-support/v')
374
378
uses : pypa/gh-action-pypi-publish@release/v1
375
379
with :
376
- packages_dir : python/mcap-ros2-support/dist
380
+ packages-dir : python/mcap-ros2-support/dist
377
381
378
382
go :
379
383
runs-on : ubuntu-latest
0 commit comments