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 eac4d08 commit ded1a8eCopy full SHA for ded1a8e
.github/workflows/publish.yml
@@ -23,7 +23,7 @@ jobs:
23
id: compare
24
run: |
25
set -e
26
- VERSION=$(awk -F'"' '/__version__/ {print $2}' mysql-to-sqlite3/__init__.py)
+ VERSION=$(awk -F'"' '/__version__/ {print $2}' mysql_to_sqlite3/__init__.py)
27
TAG=${GITHUB_REF_NAME#v}
28
if [[ "$VERSION" != "$TAG" ]]; then
29
echo "Version in mysql-to-sqlite3/__version__.py ($VERSION) does not match tag ($TAG)"
@@ -41,7 +41,7 @@ jobs:
41
pip install build setuptools wheel
42
- name: Build a binary wheel and a source tarball
43
id: build
44
- run: python3 build --sdist --wheel --outdir dist/ .
+ run: python3 -m build --sdist --wheel --outdir dist/ .
45
- name: Publish distribution package to Test PyPI
46
id: publish_test
47
uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments