This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
Allow custom awsvpcConfiguration for ECS Worker (#304) #23
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Release | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
build-release: | |
name: Build Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.7 | |
- name: Install packages | |
run: | | |
python -m pip install --upgrade pip build | |
python -m pip install --upgrade --upgrade-strategy eager -e .[dev] | |
- name: Build a binary wheel and a source tarball | |
run: | | |
python -m build --sdist --wheel --outdir dist/ | |
- name: Publish build artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: built-package | |
path: "./dist" | |
publish-release: | |
name: Publish release to PyPI | |
needs: [build-release] | |
environment: "prod" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download build artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: built-package | |
path: './dist' | |
- name: Publish distribution to PyPI | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
verbose: true | |
build-and-publish-docs: | |
name: Build and publish docs | |
needs: [build-release, publish-release] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
cache: pip | |
cache-dependency-path: requirements*.txt | |
- name: Build docs | |
run: | | |
python -m pip install --upgrade pip pyOpenSSL | |
python -m pip install --upgrade --upgrade-strategy eager -e .[dev] | |
mkdocs build | |
- name: Publish docs | |
uses: JamesIves/[email protected] | |
with: | |
branch: docs | |
folder: site | |