File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Release (TestPyPI)
2+
3+ on :
4+ workflow_dispatch :
5+
6+ jobs :
7+ publish :
8+ runs-on :
9+ group : databricks-deco-testing-runner-group
10+ labels : ubuntu-latest-deco
11+
12+ environment : release-test
13+
14+ permissions :
15+ id-token : write
16+
17+ steps :
18+ - uses : actions/checkout@v3
19+
20+ - uses : actions/setup-python@v4
21+ with :
22+ python-version : 3.13
23+
24+ - name : Install build
25+ run : pip install build
26+
27+ - name : Build wheel
28+ run : python -m build
29+ env :
30+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
31+
32+ - uses : pypa/gh-action-pypi-publish@release/v1
33+ name : Publish package distributions to TestPyPI
34+ with :
35+ repository-url : https://test.pypi.org/legacy/
36+ # See https://github.com/pypa/gh-action-pypi-publish#tolerating-release-package-file-duplicates
37+ skip-existing : true
You can’t perform that action at this time.
0 commit comments