Skip to content

Commit

Permalink
setup release action
Browse files Browse the repository at this point in the history
  • Loading branch information
wd60622 committed Jul 29, 2024
1 parent 1f21bad commit e9d23c9
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# This file has been mostly taken verbatim from https://github.com/pymc-devs/pymc/blob/main/.github/release.yml
changelog:
exclude:
labels:
- no releasenotes
categories:
- title: New Features 🎉
labels:
- enhancement
- title: Bugfixes 🐛
labels:
- bug
- title: Documentation 📖
labels:
- docs
- title: Maintenance 🔧
labels:
- "*"
14 changes: 14 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Python package
on:
push:
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and publish to pypi
uses: JRubics/poetry-publish@v1.17
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}
2 changes: 1 addition & 1 deletion lyft_bikes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from lyft_bikes.geo import read_fee_boundary

__version__ = "0.1.0"
__version__ = "0.1.1"


def chicago_only_error(func) -> None:
Expand Down

0 comments on commit e9d23c9

Please # to comment.