⬆️ Bump actions/checkout from 3.3.0 to 4.1.0 (#189) #158
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: Deploy | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
# cron every week on monday | |
- cron: "0 0 * * 1" | |
jobs: | |
build: | |
strategy: | |
matrix: | |
image: | |
- name: latest | |
python_version: "3.11" | |
- name: python3.11 | |
python_version: "3.11" | |
- name: python3.10 | |
python_version: "3.10" | |
- name: python3.9 | |
python_version: "3.9" | |
- name: python3.8 | |
python_version: "3.8" | |
- name: python3.7 | |
python_version: "3.7" | |
- name: python3.11-slim | |
python_version: "3.11" | |
- name: python3.10-slim | |
python_version: "3.10" | |
- name: python3.9-slim | |
python_version: "3.9" | |
- name: python3.8-slim | |
python_version: "3.8" | |
fail-fast: true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.0 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.7" | |
- name: Install Dependencies | |
run: python3.7 -m pip install docker pytest | |
- name: Deploy Image | |
run: bash scripts/build-push.sh | |
env: | |
NAME: ${{ matrix.image.name }} | |
PYTHON_VERSION: ${{ matrix.image.python_version }} | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Docker Hub Description | |
uses: peter-evans/dockerhub-description@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
repository: tiangolo/uvicorn-gunicorn |