Skip to content

for visual inspection in logs list all sdists and wheels that are get… #56

for visual inspection in logs list all sdists and wheels that are get…

for visual inspection in logs list all sdists and wheels that are get… #56

Workflow file for this run

name: Deploy C++
on:
workflow_dispatch:
inputs:
publish-pypi:
type: boolean
description: Publish to PyPI
jobs:
build-wheels:
uses: ./.github/workflows/build-wheels.yml@main

Check failure on line 13 in .github/workflows/deploy-cpp.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy-cpp.yml

Invalid workflow file

invalid value workflow reference: cannot specify version when calling local workflows
upload-awkward-cpp:
needs: [build-wheels]
runs-on: ubuntu-latest
if: inputs.publish-pypi
permissions:
id-token: write
environment:
name: "pypi"
url: "https://pypi.org/project/awkward-cpp/"
steps:
- uses: actions/download-artifact@v4
with:
pattern: "awkward-cpp*"
path: dist
merge-multiple: true
- name: List distributions to be deployed
run: ls -l dist/
- uses: pypa/gh-action-pypi-publish@v1.8.11