From 6b1251f094de4b039360f56068d93bb7ea3e2382 Mon Sep 17 00:00:00 2001
From: Matthew Tancik
Date: Sun, 30 Oct 2022 01:49:57 +0300
Subject: [PATCH] Add github pypi publish action (#850)
---
.github/workflows/publish.yml | 31 +++++++++++++++++++++++++++++++
README.md | 4 ++++
2 files changed, 35 insertions(+)
create mode 100644 .github/workflows/publish.yml
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
new file mode 100644
index 0000000000..b75984535a
--- /dev/null
+++ b/.github/workflows/publish.yml
@@ -0,0 +1,31 @@
+# This workflows will upload a Python Package using twine when a release is created
+# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
+
+name: Upload Python Package
+
+on:
+ release:
+ types: [created]
+
+jobs:
+ deploy:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Set up Python
+ uses: actions/setup-python@v1
+ with:
+ python-version: '3.8'
+ - name: Install dependencies
+ run: |
+ python -m pip install build twine
+ - name: Strip unsupported tags in README
+ run: |
+ sed -i '//,//d' README.md
+ - name: Build and publish
+ env:
+ PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
+ run: |
+ python -m build
+ twine upload --username __token__ --password $PYPI_TOKEN dist/*
diff --git a/README.md b/README.md
index 7e80bcfd98..21162926b5 100644
--- a/README.md
+++ b/README.md
@@ -21,11 +21,15 @@
+
+