Skip to content

Commit

Permalink
fix artifact name
Browse files Browse the repository at this point in the history
  • Loading branch information
neka-nat committed Dec 26, 2024
1 parent 14fd019 commit cf0467f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ github.run_id }}-${{ github.job }}-${{ matrix.target }}
path: xurdf-python/dist

windows:
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ github.run_id }}-${{ github.job }}
path: xurdf-python/dist

macos:
Expand All @@ -57,18 +57,18 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ github.run_id }}-${{ github.job }}
path: xurdf-python/dist

release:
name: Release
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
needs: [ macos, windows, linux ]
needs: [ macos, windows, linux-aarch64, linux-x86_64 ]
steps:
- uses: actions/download-artifact@v4
with:
name: wheels
name: wheels-${{ github.run_id }}-${{ matrix.needs }}
- uses: actions/setup-python@v2
with:
python-version: 3.9
Expand Down

0 comments on commit cf0467f

Please sign in to comment.