Skip to content

Commit 06f676e

Browse files
committed
Suffix upload to avoid conflict
1 parent 917ad51 commit 06f676e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/cicd.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -43,20 +43,25 @@ jobs:
4343

4444
steps:
4545
- uses: actions/checkout@v4
46+
4647
- uses: actions/setup-java@v4
4748
with:
4849
distribution: 'temurin'
4950
java-version: '11'
51+
5052
- name: Set up Python ${{ matrix.python-version }}
5153
uses: actions/setup-python@v5
5254
with:
5355
python-version: ${{ matrix.python-version }}
56+
5457
- name: Pre-commit Checks
5558
run: |
5659
pip -q install pre-commit
5760
pre-commit run --all-files
61+
5862
- name: Start from clean state
5963
run: make clean
64+
6065
- name: Run tests
6166
run: make PYTHON3=python check
6267

@@ -75,7 +80,7 @@ jobs:
7580
- name: Upload HTML Docs
7681
uses: actions/upload-artifact@v4
7782
with:
78-
name: packages
83+
name: packages-${{ matrix.python-version }}
7984
path: ./dist/
8085

8186
# If this commit is the result of a Git tag, push the wheel and tar packages

0 commit comments

Comments
 (0)