You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 5, 2022. It is now read-only.
# This workflow will upload a Python Package using Twine when a release is created
2
+
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
3
+
4
+
5
+
name: Upload Python Package to TestPyPi
6
+
7
+
on:
8
+
# Triggers the workflow when a release is created
9
+
release:
10
+
types: [published]
11
+
# Allows you to run this workflow manually from the Actions tab
12
+
workflow_dispatch:
13
+
14
+
jobs:
15
+
build-n-publish:
16
+
name: Build and publish Python Package to TestPyPi
0 commit comments