Skip to content

Commit

Permalink
Merge pull request #41 from pahrohfit/dev
Browse files Browse the repository at this point in the history
Keeping up to date
  • Loading branch information
pahrohfit authored Jan 3, 2023
2 parents b71262e + 4e0ff47 commit 63dbe1c
Show file tree
Hide file tree
Showing 4 changed files with 191 additions and 157 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/deploy_pre_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Publish to Test PyPI

on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+'

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: 3.8
- name: setup pypi testing env
run: poetry config repositories.testpypi https://test.pypi.org/
- name: login
run: poetry config http-basic.pypi __token__ ${{ secrets.PYPI_TESTING_PASSWORD }}
- name: build
run: poetry build
- name: publish
run: poetry publish
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
Unreleased
----------

v2.2.6 - 2023-01-03
-------------------
- Dependancy updates

v2.2.5 - 2022-12-28
-------------------
- Dependancy updates
Expand Down
Loading

0 comments on commit 63dbe1c

Please sign in to comment.