We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b35a744 commit 84febb5Copy full SHA for 84febb5
.github/workflows/python-publish.yml
@@ -11,6 +11,7 @@ name: Publish Python 🐍 distributions 📦 to PyPI
11
on:
12
release:
13
types: [published]
14
+ pull_request:
15
16
permissions:
17
contents: read
@@ -33,8 +34,9 @@ jobs:
33
34
- name: Build package
35
run: |
36
python -m build --sdist --wheel --outdir dist/ .
37
+
38
- name: Publish package
39
uses: pypa/[email protected]
40
with:
- user: __token__
- password: ${{ secrets.PYPI_API_TOKEN }}
41
+ password: ${{ secrets.TEST_PYPI }}
42
+ repository-url: https://test.pypi.org/legacy/
tutorcodejail/__about__.py
@@ -1,2 +1,2 @@
1
"""Helps you keep your cool when creating dozens of open edX and eduNEXT environments."""
2
-__version__ = "19.1.0"
+__version__ = "19.1.0.dev2"
0 commit comments