-
Notifications
You must be signed in to change notification settings - Fork 3
78 lines (68 loc) · 2.05 KB
/
docker.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
name: Docker Build & Push
on:
push:
tags:
- "v*"
workflow_dispatch:
permissions:
contents: read
packages: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out main repository
uses: actions/checkout@v4
with:
repository: elabosak233/cloudsdale
path: backend
ref: ${{ github.ref }}
- name: Check out ui repository
uses: actions/checkout@v4
with:
repository: cloudsda1e/ui
path: frontend
ref: ${{ github.ref }}
- name: Check out CI repository
uses: actions/checkout@v4
with:
repository: cloudsda1e/ci
path: ci
ref: ${{ github.ref }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Ghcr Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: elabosak233
password: ${{ secrets.GITHUB_TOKEN }}
- name: Login to Docker Hub Registry
uses: docker/login-action@v3
with:
registry: docker.io
username: elabosak233
password: ${{ secrets.DOCKER_TOKEN }}
- name: Docker metadata action
uses: docker/metadata-action@v5
id: meta
with:
images: |
ghcr.io/${{ github.repository_owner }}/cloudsdale
docker.io/${{ github.repository_owner }}/cloudsdale
flavor: |
latest=${{ startsWith(github.ref, 'refs/tags/v') && !contains(github.ref, '-') }}
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=sha,enable=true,priority=100,prefix=,suffix=,format=short
- name: Build and Push
uses: docker/build-push-action@v3
with:
context: ./
file: ./ci/Dockerfile
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64
push: true