mirror of https://github.com/encode/starlette.git
30 lines
605 B
YAML
30 lines
605 B
YAML
name: Publish
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
publish:
|
|
name: "Publish release"
|
|
runs-on: "ubuntu-latest"
|
|
|
|
environment:
|
|
name: deploy
|
|
|
|
steps:
|
|
- uses: "actions/checkout@v2"
|
|
- uses: "actions/setup-python@v2"
|
|
with:
|
|
python-version: 3.7
|
|
- name: "Install dependencies"
|
|
run: "scripts/install"
|
|
- name: "Build package & docs"
|
|
run: "scripts/build"
|
|
- name: "Publish to PyPI & deploy docs"
|
|
run: "scripts/publish"
|
|
env:
|
|
TWINE_USERNAME: __token__
|
|
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
|