Skip to content

Commit 51c1c2b

Browse files
committed
Apply minor modification in twine check
1 parent 3742325 commit 51c1c2b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
name: dist-basemap-${{ matrix.os }}
113113

114114
check:
115-
name: Check basemap packages
115+
name: Check packages
116116
needs: [build_data, build_basemap]
117117
runs-on: ubuntu-latest
118118
steps:
@@ -130,10 +130,11 @@ jobs:
130130
- name: Check packages with twine
131131
run: |
132132
python -m pip install twine
133-
python -m twine check dist/*
133+
python -m twine check dist/*.tar.gz
134+
python -m twine check dist/*.whl
134135
135136
upload:
136-
name: Upload basemap packages
137+
name: Upload packages
137138
needs: [build_data, build_basemap, check]
138139
runs-on: ubuntu-latest
139140
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')

0 commit comments

Comments
 (0)