Skip to content

Commit a22a722

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

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: .github/workflows/build.yml

+3-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,10 @@ 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 $(ls dist/* | sort)
134134
135135
upload:
136-
name: Upload basemap packages
136+
name: Upload packages
137137
needs: [build_data, build_basemap, check]
138138
runs-on: ubuntu-latest
139139
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')

0 commit comments

Comments
 (0)