Skip to content

Commit

Permalink
avoiding duplicate upload fix #11157
Browse files Browse the repository at this point in the history
  • Loading branch information
behrisch committed Jul 18, 2022
1 parent fbd58f3 commit 4dcff3a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/wheel-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,13 @@ jobs:
- name: Downloading Wheels artifact
uses: actions/download-artifact@v2

# this step removes the pypy versions until someone needs them to save some space
- name: Moving artifacts
run: |
ls -lR
mkdir dist
mv ./*-wheels/* dist
rm -f dist/libsumo*-pypy* dist/libtraci*-pypy*
- name: Publish to Test PyPI
uses: pypa/gh-action-pypi-publish@master
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/wheel-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,13 @@ jobs:
steps:
- uses: actions/download-artifact@v2

# this step removes the sumolib and traci packages which linux takes care of
- name: Moving artifacts
run: |
ls -lR
mkdir dist
mv ./*-wheels/* dist
rm -f dist/sumolib* dist/traci*
mv dist/eclipse_sumo-*cp38* `echo dist/eclipse_sumo-*cp38* | sed 's/cp38-cp38/py2.py3-none/'`
- name: Publish to Test PyPI
Expand Down

0 comments on commit 4dcff3a

Please sign in to comment.