-
Notifications
You must be signed in to change notification settings - Fork 11
106 lines (97 loc) · 3.55 KB
/
build_and_publish.yml
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
name: Docker multiarch publish
on: [push, workflow_dispatch]
env:
REPOSITORY: bigbluebutton_mock
jobs:
check-env:
# We need to check if at least one of the repository is defined
runs-on: ubuntu-latest
outputs:
checks: ${{ steps.checks.outputs.defined }}
steps:
- id: checks
env:
GH_OWNER: ${{ secrets.GH_OWNER }}
DOCKERHUB_OWNER: ${{ secrets.DOCKERHUB_OWNER }}
if: env.GH_OWNER != '' || env.DOCKERHUB_OWNER != ''
run: echo "defined=true" >> $GITHUB_OUTPUT
build-docker:
needs: [check-env]
# Completely avoid forks to try this workflow.
runs-on: ubuntu-latest
env:
GH_OWNER: ${{ secrets.GH_OWNER }}
DOCKERHUB_OWNER: ${{ secrets.DOCKERHUB_OWNER }}
if: needs.check-env.outputs.checks == 'true'
steps:
- name: Checkout
uses: actions/checkout@v2
# Calculate the tags to be pushed to the registries.
- name: Calculate image tag names for Dockerhub
if: env.GH_OWNER != ''
id: calculatetagsdhub
uses: docker/metadata-action@v3
with:
images: |
${{ env.DOCKERHUB_OWNER }}/${{ env.REPOSITORY }}
tags: |
type=raw,value=latest
type=ref,event=tag
- name: Calculate image tag names for GCR
if: env.GH_OWNER != ''
id: calculatetagsgcr
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/${{ env.GH_OWNER }}/${{ env.REPOSITORY }}
tags: |
type=raw,value=latest
type=ref,event=tag
# https://github.com/docker/setup-qemu-action#usage
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
# https://github.com/marketplace/actions/docker-setup-buildx
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
# https://github.com/docker/login-action#docker-hub
- name: Login to Docker Hub
if: ${{ env.DOCKERHUB_OWNER != '' }}
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
# https://github.com/docker/login-action#github-container-registry
- name: Login to GitHub Container Registry
if: env.GH_OWNER != ''
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ env.GH_OWNER }}
password: ${{ secrets.GITHUB_TOKEN }}
# https://github.com/docker/build-push-action#multi-platform-image
- name: Build and push to Docker Hub
if: env.DOCKERHUB_OWNER != ''
uses: docker/build-push-action@v3
with:
context: .
file: Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.calculatetagsdhub.outputs.tags }}
- name: Build and push to Github registries
if: ${{ env.GH_OWNER != '' }}
uses: docker/build-push-action@v3
with:
context: .
file: Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.calculatetagsgcr.outputs.tags }}
# Note that we only update the description with the main branch version.
- name: Set Docker Hub description from README.md
if: github.ref == 'refs/heads/main' && env.DOCKERHUB_OWNER != ''
uses: peter-evans/dockerhub-description@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: ${{ secrets.DOCKERHUB_OWNER }}/${{ env.REPOSITORY }}