Skip to content

Commit cec8c5d

Browse files
committed
readded deleted workflow
1 parent 6a95333 commit cec8c5d

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

.github/workflows/release-test.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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

0 commit comments

Comments
 (0)