Skip to content

Commit

Permalink
[GH-108] Replace README.rst with README.md (#109)
Browse files Browse the repository at this point in the history
And update the readme to include more documentation.
  • Loading branch information
jealous committed Jan 6, 2022
1 parent 2b2d9ee commit 68f105d
Show file tree
Hide file tree
Showing 7 changed files with 778 additions and 376 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: build-test
name: build & test

on:
push:
Expand Down
28 changes: 28 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Publish Python Package

on:
release:
types: [published]

jobs:
deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit 68f105d

Please sign in to comment.