Skip to content
This repository was archived by the owner on Feb 17, 2021. It is now read-only.

Commit a93487c

Browse files
author
staticdev
committed
Release workflow
1 parent 6b76817 commit a93487c

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Release
2+
on:
3+
release:
4+
types: [published]
5+
jobs:
6+
release:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: actions/setup-python@v1
11+
with:
12+
python-version: '3.8'
13+
architecture: x64
14+
- run: pip install nox==2019.11.9
15+
- run: pip install poetry==1.0.5
16+
- run: nox
17+
- run: poetry build
18+
- run: poetry publish --username=__token__ --password=${{ secrets.PYPI_TOKEN }}

0 commit comments

Comments
 (0)