-
Notifications
You must be signed in to change notification settings - Fork 50
80 lines (65 loc) · 2.38 KB
/
docker-build-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
name: Build and Publish Docker Images Prod
on:
push:
branches: [main]
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
ever-teams-webapp:
runs-on: buildjet-8vcpu-ubuntu-2204
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
load: true
tags: |
ghcr.io/ever-co/ever-teams-webapp:latest
everco/ever-teams-webapp:latest
registry.digitalocean.com/ever/ever-teams-webapp:latest
${{ secrets.CW_DOCKER_REGISTRY }}/ever-co/ever-teams-webapp:latest
cache-from: type=registry,ref=everco/ever-teams-webapp:latest
cache-to: type=inline
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Push to Docker Hub Registry
run: |
docker push everco/ever-teams-webapp:latest
- name: Install doctl
uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
- name: Log in to DigitalOcean Container Registry with short-lived credentials
run: doctl registry login --expiry-seconds 3600
- name: Push to DigitalOcean Registry
run: |
docker push registry.digitalocean.com/ever/ever-teams-webapp:latest
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GH_TOKEN }}
- name: Push to Github Registry
run: |
docker push ghcr.io/ever-co/ever-teams-webapp:latest
- name: Login to CW Container Registry
uses: docker/login-action@v2
with:
registry: ${{ secrets.CW_DOCKER_REGISTRY }}
username: ${{ secrets.CW_DOCKER_USER }}
password: ${{ secrets.CW_DOCKER_USER_PASSWORD }}
- name: Push to CW Registry
run: |
docker push ${{ secrets.CW_DOCKER_REGISTRY }}/ever-co/ever-teams-webapp:latest