Skip to content

Commit eff50bf

Browse files
committed
Update publish action
1 parent 7e5c750 commit eff50bf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/publish-package.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030
run: |
3131
python -m pip install --upgrade pip
3232
pip install build flit
33+
- name: Build package
34+
run: |
3335
sed -i -e '0,/name = "pyqode-python"/{s/name = "pyqode-core"/name = "pyqode.core"/}' pyproject.toml
34-
flit build --format=wheel
36+
python -m build
3537
for file in dist/pyqode_core-*; do mv "$file" "${file//_core/.core}"; done
3638
for file in dist/pyqode-core-*; do mv "$file" "${file//-core/.core}"; done
37-
- name: Build package
38-
run: python -m build
3939
- name: Publish package
4040
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
4141
with:

pyqode/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import logging
1111

1212

13-
__version__ = '4.0.8'
13+
__version__ = '4.0.9'
1414

1515

1616
logging.addLevelName(1, "PYQODEDEBUGCOMM")

0 commit comments

Comments
 (0)