Skip to content

Commit 10d3cb8

Browse files
committed
Set version v0.1.2
1 parent bace330 commit 10d3cb8

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/publish.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ jobs:
1818
- name: Run tests
1919
run: make tests
2020
- name: Run build
21-
run: poetry build -f wheel
21+
run: poetry build
2222
- name: Publish in GitHub Releases
2323
uses: svenstaro/upload-release-action@v2
2424
with:
2525
repo_token: ${{ secrets.GITHUB_TOKEN }}
26-
file: dist/*.whl
26+
file: dist/*
2727
tag: ${{ github.ref }}
2828
overwrite: true
2929
file_glob: true
30-
- name: Publish in PyPI
31-
uses: d1618033/gh-action-python-publish-using-poetry@master
32-
with:
33-
pypi_username: ${{ secrets.PYPI_USERNAME }}
34-
pypi_password: ${{ secrets.PYPI_PASSWORD }}
30+
# - name: Publish in PyPI
31+
# uses: d1618033/gh-action-python-publish-using-poetry@master
32+
# with:
33+
# pypi_username: ${{ secrets.PYPI_USERNAME }}
34+
# pypi_password: ${{ secrets.PYPI_PASSWORD }}

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "template"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "Python template with CI/CD ready for production"
55
authors = ["leynier <[email protected]>"]
66
homepage = "https://github.com/leynier/python-template"

0 commit comments

Comments
 (0)