Skip to content

Commit

Permalink
switch hyphen to underscore in check
Browse files Browse the repository at this point in the history
  • Loading branch information
lilyminium committed Jan 13, 2025
1 parent ed1fd45 commit f1ad773
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gh-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ jobs:
- name: Check package build
run: |
DISTRIBUTION=$(ls -t1 dist/openff-nagl-*.tar.gz | head -n 1)
test -n "${DISTRIBUTION}" || { echo "no distribution dist/openff-nagl-*.tar.gz found"; exit 1; }
DISTRIBUTION=$(ls -t1 dist/openff_nagl-*.tar.gz | head -n 1)
test -n "${DISTRIBUTION}" || { echo "no distribution dist/openff_nagl-*.tar.gz found"; exit 1; }
echo "twine check $DISTRIBUTION"
twine check $DISTRIBUTION
Expand Down

0 comments on commit f1ad773

Please sign in to comment.