Skip to content

Commit 96972c5

Browse files
committed
Add release workflow
1 parent b057b68 commit 96972c5

File tree

3 files changed

+36
-1
lines changed

3 files changed

+36
-1
lines changed

.github/workflows/release.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Publish to PyPi
2+
3+
permissions:
4+
actions: write
5+
6+
on:
7+
push:
8+
tags:
9+
- '*'
10+
11+
jobs:
12+
pypi-release:
13+
name: PyPi Release
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Install poetry
19+
run: pipx install poetry
20+
- uses: actions/setup-python@v5
21+
with:
22+
python-version-file: pyproject.toml
23+
cache: poetry
24+
- name: Install dependencies and build
25+
run: |
26+
poetry install
27+
poetry build
28+
29+
- name: Publish to PyPi
30+
id: pypi_publish
31+
uses: pypa/gh-action-pypi-publish@release/v1
32+
with:
33+
user: __token__
34+
password: ${{ secrets.PYPI_TOKEN }}
35+
verbose: true

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Simulate the look of hand-signed and scanned documents. MockSign is a simple too
1414
Use pip to install MockSign with
1515

1616
```bash
17-
pip install git+https://github.com/srwi/MockSign
17+
pip install mocksign
1818
```
1919

2020
## Usage

src/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)