We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3742325 commit 51c1c2bCopy full SHA for 51c1c2b
.github/workflows/build.yml
@@ -112,7 +112,7 @@ jobs:
112
name: dist-basemap-${{ matrix.os }}
113
114
check:
115
- name: Check basemap packages
+ name: Check packages
116
needs: [build_data, build_basemap]
117
runs-on: ubuntu-latest
118
steps:
@@ -130,10 +130,11 @@ jobs:
130
- name: Check packages with twine
131
run: |
132
python -m pip install twine
133
- python -m twine check dist/*
+ python -m twine check dist/*.tar.gz
134
+ python -m twine check dist/*.whl
135
136
upload:
- name: Upload basemap packages
137
+ name: Upload packages
138
needs: [build_data, build_basemap, check]
139
140
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
0 commit comments