Skip to content

Commit eec2079

Browse files
committed
Revert minor changes in basemap-data/basemap-data-hires workflows
1 parent b7595d5 commit eec2079

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.github/workflows/basemap-data-hires.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,5 +120,9 @@ jobs:
120120
TWINE_PASSWORD: "${{ secrets.PYPI_TOKEN }}"
121121
TWINE_REPOSITORY_URL: "${{ secrets.PYPI_REPOSITORY_URL }}"
122122
run: |
123-
python -m twine check ${{ env.PKGDIR }}/dist/*
124-
python -m twine upload --skip-existing ${{ env.PKGDIR }}/dist/*
123+
python -m twine check \
124+
${{ env.PKGDIR }}/dist/*.zip \
125+
${{ env.PKGDIR }}/dist/*.whl
126+
python -m twine upload --skip-existing \
127+
${{ env.PKGDIR }}/dist/*.zip \
128+
${{ env.PKGDIR }}/dist/*.whl

.github/workflows/basemap-data.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,5 +120,9 @@ jobs:
120120
TWINE_PASSWORD: "${{ secrets.PYPI_TOKEN }}"
121121
TWINE_REPOSITORY_URL: "${{ secrets.PYPI_REPOSITORY_URL }}"
122122
run: |
123-
python -m twine check ${{ env.PKGDIR }}/dist/*
124-
python -m twine upload --skip-existing ${{ env.PKGDIR }}/dist/*
123+
python -m twine check \
124+
${{ env.PKGDIR }}/dist/*.zip \
125+
${{ env.PKGDIR }}/dist/*.whl
126+
python -m twine upload --skip-existing \
127+
${{ env.PKGDIR }}/dist/*.zip \
128+
${{ env.PKGDIR }}/dist/*.whl

0 commit comments

Comments
 (0)