Skip to content

Commit 1e0bafd

Browse files
committed
Add pypi publish workflow
1 parent 318bafd commit 1e0bafd

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/publish.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Publish Component to PyPI
2+
3+
on:
4+
push:
5+
tags:
6+
- '*'
7+
8+
jobs:
9+
publish:
10+
name: Publish Component to PyPI
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@master
14+
- name: Set up Python 3.12
15+
uses: actions/setup-python@v3
16+
with:
17+
python-version: '3.12'
18+
- name: Install package
19+
run: pip install .
20+
- name: Publish to PyPI
21+
run: reflex component publish -t ${{ secrets.PYPI_TOKEN }} --no-share --no-validate-project-info

0 commit comments

Comments
 (0)