Skip to content

Commit f420f10

Browse files
authored
Merge pull request #3 from openpaygo/fix-ci
Fix ci
2 parents 85458d1 + cd9a15b commit f420f10

4 files changed

Lines changed: 11 additions & 5 deletions

File tree

.github/workflows/ci-cd.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,17 @@ jobs:
77
if: startsWith(github.ref, 'refs/tags/v') # On tagged release only
88
runs-on: ubuntu-latest
99
environment:
10-
name: pypi
10+
name: release
1111
url: https://pypi.org/p/openpaygo
1212
permissions:
1313
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
1414
steps:
15-
# retrieve your distributions here
15+
- uses: actions/checkout@v4
16+
- name: Set up Python
17+
uses: actions/setup-python@v4
18+
with:
19+
python-version: "3.x"
20+
- name: Generate package distribution
21+
run: python3 setup.py sdist
1622
- name: Publish package distributions to PyPI
1723
uses: pypa/gh-action-pypi-publish@release/v1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,6 @@ elif token_type == TokenType.INVALID:
148148

149149
## Changelog
150150

151-
### 2023-10-03 - v0.1.3
151+
### 2023-10-03 - v0.1.7
152152
- First working version published on PyPI
153153
- Setup CI for pushing to PyPI

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = openpaygo
3-
version = 0.1.3
3+
version = 0.1.7
44
url = https://github.com/openpaygo/openpaygo-python
55
description-file=README.md
66
license_files=LICENSE

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
setup(
55
name="openpaygo",
66
packages=find_packages(),
7-
version='0.1.3',
7+
version='0.1.7',
88
license='MIT',
99
author="Solaris Offgrid",
1010
url='https://github.com/openpaygo/openpaygo-python',

0 commit comments

Comments
 (0)