File tree 3 files changed +36
-1
lines changed
3 files changed +36
-1
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Simulate the look of hand-signed and scanned documents. MockSign is a simple too
14
14
Use pip to install MockSign with
15
15
16
16
``` bash
17
- pip install git+https://github.com/srwi/MockSign
17
+ pip install mocksign
18
18
```
19
19
20
20
## Usage
You can’t perform that action at this time.
0 commit comments