Skip to content

Commit ce9b04c

Browse files
committed
update
1 parent 5f6af2a commit ce9b04c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build-wheels.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,16 @@ jobs:
5858
check-manifest --verbose && \
5959
pip install readme-renderer && \
6060
twine check dist/* && \
61+
mkdir -p ${{ github.workspace }}/wheelhouse && \
62+
/bin/mv -f dist/*whl ${{ github.workspace }}/wheelhouse && \
6163
conda deactivate'
6264
6365
- name: Upload wheels to release
6466
uses: svenstaro/upload-release-action@v2
6567
if: github.event_name == 'create'
6668
with:
6769
repo_token: ${{ secrets.GITHUB_TOKEN }}
68-
file: /ws/cftime/dist/cftime*whl
70+
file: ${{ github.workspace }}/wheelhouse/cftime*whl
6971
tag: ${{ github.ref }}
7072
overwrite: true
7173
file_glob: true

0 commit comments

Comments
 (0)