-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (38 loc) · 1.23 KB
/
CI-CD-dockerhub.yaml
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
name: Build and Push Images - Dockerhub
on:
workflow_dispatch: # Manual trigger
push: # Push event
branches:
- deploy # Only when pushed to 'deploy' branch
jobs:
build_push_images:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- dockerfile: Dockerfile.db
tag: ghcr.io/topmello/postgres-vec-geo:latest
- dockerfile: Dockerfile.backend
tag: ghcr.io/topmello/settle-aid-backend:latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
# actions/checkout MUST come before auth
- 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: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GHCR_TOKEN }}
- name: Build and push Docker image to Dockerhub
uses: docker/build-push-action@v4
with:
push: true
tags: ${{ matrix.tag }}
context: .
file: ${{ matrix.dockerfile }}