Skip to content

Commit 41efe0d

Browse files
Andrew Quijanolacraig2
authored andcommitted
Fix upload for v4 due to unable to upload same file name twice
1 parent 57cbc97 commit 41efe0d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/publish_docker.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,15 @@ jobs:
5555
with:
5656
tag_name: ${{ needs.create_release.outputs.v-version }}
5757
files: |
58-
panda/debian/pandare-*.whl
59-
panda/debian/pandare_*.deb
58+
panda/debian/pandare*.whl
59+
panda/debian/pandare*.deb
6060
6161
- name: Store the PyPanda distribution packages
62-
uses: actions/upload-artifact@v3
62+
if: ${{ matrix.ubuntu_version == env.PANDA_CONTAINER_UBUNTU_VERSION }}
63+
uses: actions/upload-artifact@v4
6364
with:
6465
name: pypanda
65-
path: panda/debian/pandare-*.whl
66+
path: panda/debian/pandare*.whl
6667
if-no-files-found: error
6768

6869
- name: 'Login to Docker Registry'
@@ -137,8 +138,7 @@ jobs:
137138
git push || true
138139

139140
publish-to-pypi:
140-
name: >-
141-
Publish Python 🐍 distribution 📦 to PyPI
141+
name: Publish Python 🐍 distribution 📦 to PyPI
142142
if: github.repository == 'panda-re/panda' && github.ref == 'refs/heads/dev'
143143
needs:
144144
- build_release_assets

0 commit comments

Comments
 (0)