10000
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 a22a722Copy full SHA for a22a722
.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,10 @@ 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 $(ls dist/* | sort)
134
135
upload:
136
- name: Upload basemap packages
+ name: Upload packages
137
needs: [build_data, build_basemap, check]
138
139
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
0 commit comments