Skip to content

Commit

Permalink
py: version 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoeppe committed Dec 25, 2023
1 parent bcc75be commit ded0dfd
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Publish Python package

on:
push:
tags:
- 'py/*'

jobs:
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: release
url: https://pypi.org/p/gnumake-tokenpool
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- run: python3 -m pip install build
- run: python3 -m build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
2 changes: 1 addition & 1 deletion py/src/gnumake_tokenpool/tokenpool.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from datetime import datetime
from typing import List

__version__ = '0.0.4'
__version__ = '0.0.5'


class NoJobServer(Exception):
Expand Down

0 comments on commit ded0dfd

Please sign in to comment.