Skip to content

Commit a4353d4

Browse files
committed
🎨 add publish action
1 parent 22a65b9 commit a4353d4

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.github/workflows/publish.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: publish
2+
on:
3+
push:
4+
tags:
5+
- 'v*.*.*'
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Build and publish to pypi
12+
uses: JRubics/poetry-publish@v1.6
13+
with:
14+
pypi_token: ${{ secrets.PYPI_TOKEN }}

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "beastiary"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = ""
55
authors = ["Wytamma Wirth <wytamma.wirth@me.com>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)