-
Notifications
You must be signed in to change notification settings - Fork 60
91 lines (77 loc) · 2.81 KB
/
beta-image.yml
File metadata and controls
91 lines (77 loc) · 2.81 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: Build beta image
on:
workflow_dispatch
env:
REGISTRY: ghcr.io
# IMAGE_NAME: ${{ github.repository }}
jobs:
# define the job to build and publish docker images
build-and-push-docker-images:
runs-on: ubuntu-latest
# steps to perform in the job
steps:
- name: Check out code
uses: actions/checkout@v3
# set up Docker build action
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
- name: Get build date
id: get_date
run: echo "BUILD_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
# https://github.com/docker/metadata-action
- name: Docker PHP meta
id: meta_php
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ github.actor }}/linguacafe-webserver
tags: |
type=ref,event=branch
type=ref,suffix=-${{ env.BUILD_DATE}},event=branch
# https://github.com/docker/metadata-action
- name: Docker Python meta
id: meta_python
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ github.actor }}/linguacafe-python-service
tags: |
type=ref,event=branch
type=ref,suffix=-${{ env.BUILD_DATE}},event=branch
# https://github.com/docker/login-action#github-container-registry
- name: Log in to Github Packages
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GHCR_LINGUA_PAT }}
# https://github.com/docker/build-push-action
- name: Build and push PHP image to GitHub Container Registry
id: docker_build_php
uses: docker/build-push-action@v3
with:
file: "./docker/PhpDockerfile"
# extra platforms can be added here:
platforms: |
linux/amd64
linux/arm64
# Note: tags have to be all lower-case
tags: ${{ steps.meta_php.outputs.tags }}
labels: ${{ steps.meta_php.outputs.labels }}
push: true
- name: PHP Image digest
run: echo ${{ steps.docker_build_php.outputs.digest }}
# https://github.com/docker/build-push-action
- name: Build and push Python image to GitHub Container Registry
id: docker_build_python
uses: docker/build-push-action@v3
with:
file: "./docker/PythonDockerfile"
platforms: |
linux/amd64
# Note: tags have to be all lower-case
tags: ${{ steps.meta_python.outputs.tags }}
labels: ${{ steps.meta_python.outputs.labels }}
push: true
- name: Python Image digest
run: echo ${{ steps.docker_build_python.outputs.digest }}