-
Notifications
You must be signed in to change notification settings - Fork 8
55 lines (51 loc) · 1.42 KB
/
deploy.yml
File metadata and controls
55 lines (51 loc) · 1.42 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Deploy
on:
push:
branches:
- main
paths:
- 'images/*'
workflow_dispatch:
jobs:
deploy:
strategy:
matrix:
image:
- name: latest
python_version: "3.9"
- name: python3.9
python_version: "3.9"
- name: python3.9-slim
python_version: "3.9"
- name: python3.9-alpine
python_version: "3.9"
- name: python3.8
python_version: "3.8"
- name: python3.8-slim
python_version: "3.8"
- name: python3.8-alpine
python_version: "3.8"
- name: python3.7
python_version: "3.7"
- name: python3.7-slim
python_version: "3.7"
- name: python3.7-alpine
python_version: "3.7"
fail-fast: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: "3.7"
- name: Install Dependencies
run: python3.7 -m pip install docker
- name: Deploy Image
run: bash scripts/docker-push.sh
env:
NAME: ${{ matrix.image.name }}
DOCKERFILE: ${{ matrix.image.dockerfile }}
PYTHON_VERSION: ${{ matrix.image.python_version }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}