Initial import

This commit is contained in:
2022-06-08 15:51:29 +01:00
commit 903229cccb
12 changed files with 436 additions and 0 deletions

27
.github/workflows/release.yaml vendored Normal file
View File

@@ -0,0 +1,27 @@
---
name: Release
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install -r requirements-dev.txt
- name: Build Assets
run: python setup.py sdist bdist_wheel
- name: Release
uses: softprops/action-gh-release@v1
with:
name: "Version ${{ github.ref_name }}"
generate_release_notes: true
files: |
dist/*