-
Notifications
You must be signed in to change notification settings - Fork 25
36 lines (30 loc) · 985 Bytes
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Publish Release
on:
release:
types: [published]
jobs:
build-and-publish:
name: Build and publish dash-bootstrap-templates to PyPI and TestPyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install . build
- name: Build package
run: python -m build --sdist --wheel --outdir dist/
# - name: Publish dash-bootstrap-templates to TestPyPI
# uses: pypa/[email protected]
# with:
# password: ${{ secrets.TEST_PYPI_API_TOKEN }}
# repository_url: https://test.pypi.org/legacy/
#
- name: Publish dash-bootstrap-templates to PyPI
uses: pypa/[email protected]
with:
password: ${{ secrets.PYPI_API_TOKEN }}