Skip to content

Commit

Permalink
pypi: move from pushing a test release every MR to pushing only on tag
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkl33t committed Dec 5, 2023
1 parent 05b78a1 commit e36e2d3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ jobs:
--outdir dist/
.
- name: Publish to test PyPI always
- name: Publish to test PyPI on tag to gate release failures
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
author = "Codethink Ltd"

release = "0.1"
version = "0.1.1"
version = "0.1.2"

# -- General configuration

Expand Down
2 changes: 1 addition & 1 deletion lifecycle/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Lifecycle management namespace"""

__version__ = "0.1.1"
__version__ = "0.1.2"

from abc import ABC, abstractmethod
from collections.abc import Mapping
Expand Down

0 comments on commit e36e2d3

Please sign in to comment.