Skip to content

Commit 612c775

Browse files
v0.0.6 📜
1 parent ab44b95 commit 612c775

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,21 +74,23 @@ jobs:
7474
publish:
7575
runs-on: ubuntu-18.04
7676
needs: build
77-
if: startsWith(github.ref, 'refs/tags')
7877
steps:
7978
- name: Download a distribution artifact
8079
uses: actions/download-artifact@v2
80+
if: startsWith(github.ref, 'refs/tags')
8181
with:
8282
name: dist-package-3.9
8383
- name: Publish distribution 📦 to Test PyPI
8484
uses: pypa/gh-action-pypi-publish@master
85+
if: startsWith(github.ref, 'refs/tags')
8586
with:
8687
skip_existing: true
8788
user: __token__
8889
password: ${{ secrets.test_pypi_password }}
8990
repository_url: https://test.pypi.org/legacy/
9091
- name: Publish distribution 📦 to PyPI
9192
uses: pypa/gh-action-pypi-publish@master
93+
if: startsWith(github.ref, 'refs/tags')
9294
with:
9395
user: __token__
9496
password: ${{ secrets.pypi_password }}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def readme():
88

99
setup(
1010
name="essentials-openapi",
11-
version="0.0.5",
11+
version="0.0.6",
1212
description="Classes to generate OpenAPI Documentation v3 and v2, in JSON and YAML",
1313
long_description=readme(),
1414
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)