Skip to content

Commit d346917

Browse files
committed
chore: Fix publish workflow
1 parent d06a0d5 commit d346917

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

.github/workflows/publish.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,18 @@ jobs:
1212
# IMPORTANT: this permission is mandatory for trusted publishing
1313
id-token: write
1414
steps:
15-
# retrieve your distributions here
15+
- name: Set up Python 3
16+
uses: actions/setup-python@v3
17+
- name: Set up Python
18+
uses: actions/setup-python@v4
19+
with:
20+
python-version: '3.x'
21+
- name: Install dependencies
22+
run: |
23+
python -m pip install --upgrade pip
24+
pip install -r requirements.txt
25+
pip install build
26+
- name: Build package
27+
run: python -m build
1628
- name: Publish package distributions to PyPI
17-
uses: pypa/gh-action-pypi-publish@release/v1
29+
uses: pypa/gh-action-pypi-publish@release/v1

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
]
2727
setuptools.setup(
2828
name=name,
29-
version="0.0.2",
29+
version="0.0.3",
3030
description=description,
3131
author="CloudQuery LTD",
3232
author_email="[email protected]",
33-
license="Apache 2.0",
33+
license="MPL-2.0",
3434
url=url,
3535
classifiers=[
3636
# release_status,

0 commit comments

Comments
 (0)