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
# setup tools guide used as base template - https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/
2
+
# wait on check action used to wait for tests to finish - https://github.com/marketplace/actions/wait-on-check
3
+
name: Release
4
+
5
+
on:
6
+
push:
7
+
tags:
8
+
- 'v*'
9
+
10
+
jobs:
11
+
build-n-publish:
12
+
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
0 commit comments