We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f6af2a commit ce9b04cCopy full SHA for ce9b04c
.github/workflows/build-wheels.yml
@@ -58,14 +58,16 @@ jobs:
58
check-manifest --verbose && \
59
pip install readme-renderer && \
60
twine check dist/* && \
61
+ mkdir -p ${{ github.workspace }}/wheelhouse && \
62
+ /bin/mv -f dist/*whl ${{ github.workspace }}/wheelhouse && \
63
conda deactivate'
64
65
- name: Upload wheels to release
66
uses: svenstaro/upload-release-action@v2
67
if: github.event_name == 'create'
68
with:
69
repo_token: ${{ secrets.GITHUB_TOKEN }}
- file: /ws/cftime/dist/cftime*whl
70
+ file: ${{ github.workspace }}/wheelhouse/cftime*whl
71
tag: ${{ github.ref }}
72
overwrite: true
73
file_glob: true
0 commit comments