Skip to content

Commit

Permalink
update name
Browse files Browse the repository at this point in the history
  • Loading branch information
njzjz authored Dec 20, 2023
1 parent d213919 commit a5a6a50
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
DP_PKG_NAME: ${{ matrix.dp_pkg_name }}
- uses: actions/upload-artifact@v4
with:
name: cibw-${{ github.job }}-${{ strategy.job-index }}
name: cibw-cp${{ matrix.python }}-${{ matrix.platform_id }}-cu${{ matrix.cuda_version }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
build_sdist:
name: Build source distribution
Expand All @@ -99,7 +99,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: sdist
name: cibw-sdist
path: dist/*.tar.gz

upload_pypi:
Expand All @@ -112,6 +112,7 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
pattern: cibw-*
path: dist
merge-multiple: true
- uses: pypa/gh-action-pypi-publish@release/v1
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/package_c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: libdeepmd_c-${{ github.job }}-${{ strategy.job-index }}
name: libdeepmd_c-${{ strategy.job-index }}-${{ matrix.filename }}
path: ${{ matrix.filename }}
- name: Test C library
run: ./source/install/docker_test_package_c.sh
Expand All @@ -48,6 +48,7 @@ jobs:
- name: Download artifact
uses: actions/download-artifact@v4
with:
pattern: libdeepmd_c-*
merge-multiple: true
- run: tar -vxzf ./libdeepmd_c.tar.gz
- name: Test C library
Expand Down

0 comments on commit a5a6a50

Please sign in to comment.