NeuralNetworkVerification / Marabou

Other
239 stars 86 forks source link

Fix github action failure to release #799

Closed wu-haoze closed 2 months ago

wenkokke commented 2 months ago

The wheelhouse-*-* patterns are there to match the uploads, so you need to make sure you upload the wheels with a unique name for each job, then match those names here.

wenkokke commented 2 months ago

This should be v4, because upload and download v3 and v4 are not mutually compatible:

# cibuuldwheel.yml
- uses: actions/upload-artifact@v3
        with:
          name: wheelhouse
          path: ./wheelhouse/*.whl

The name field should be some identifier that is unique for each run of that job. Probably wheelhouse-${{ runner.os }} suffices.

The pattern in the download should then match that, so wheelhouse-* in that case.

wenkokke commented 2 months ago

You'll have to recreate the tag.