Skip to content

Commit

Permalink
Fix upload for v4 due to unable to upload same file name twice
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Quijano authored and lacraig2 committed Aug 20, 2024
1 parent 57cbc97 commit 41efe0d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/publish_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,15 @@ jobs:
with:
tag_name: ${{ needs.create_release.outputs.v-version }}
files: |
panda/debian/pandare-*.whl
panda/debian/pandare_*.deb
panda/debian/pandare*.whl
panda/debian/pandare*.deb
- name: Store the PyPanda distribution packages
uses: actions/upload-artifact@v3
if: ${{ matrix.ubuntu_version == env.PANDA_CONTAINER_UBUNTU_VERSION }}
uses: actions/upload-artifact@v4
with:
name: pypanda
path: panda/debian/pandare-*.whl
path: panda/debian/pandare*.whl
if-no-files-found: error

- name: 'Login to Docker Registry'
Expand Down Expand Up @@ -137,8 +138,7 @@ jobs:
git push || true

publish-to-pypi:
name: >-
Publish Python 🐍 distribution 📦 to PyPI
name: Publish Python 🐍 distribution 📦 to PyPI
if: github.repository == 'panda-re/panda' && github.ref == 'refs/heads/dev'
needs:
- build_release_assets
Expand Down

0 comments on commit 41efe0d

Please sign in to comment.