-
Notifications
You must be signed in to change notification settings - Fork 0
102 lines (88 loc) · 3.08 KB
/
release-images.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
name: Publish Docker Images
on:
push:
branches:
- main
release:
types:
- published
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
push_backend:
name: Push Backend Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_REGISTRY_USERNAME }}
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
- name: Gather Tags and Labels (Release)
id: meta_release
uses: docker/[email protected]
with:
images: glossawy/rss-feed-editor
tags: type=match,pattern=\d.\d,group=0
if: ${{ github.event_name == 'release' }}
- name: Gather Tags and Labels (Push)
id: meta_push
uses: docker/[email protected]
with:
images: glossawy/rss-feed-editor
tags: type=raw,value=edge
if: ${{ github.event_name == 'push' }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and Push
uses: docker/build-push-action@v5
with:
file: ./Dockerfile
context: .
platforms: linux/arm64,linux/amd64
push: true
tags: ${{ steps.meta_release.outputs.tags || steps.meta_push.outputs.tags }}
labels: ${{ steps.meta_release.outputs.labels || steps.meta_push.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
push_frontend:
name: Push Frontend Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_REGISTRY_USERNAME }}
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
- name: Gather Tags and Labels (Release)
id: meta_release
uses: docker/[email protected]
with:
images: glossawy/rss-feed-editor-frontend
tags: type=match,pattern=\d.\d,group=0
if: ${{ github.event_name == 'release' }}
- name: Gather Tags and Labels (Push)
id: meta_push
uses: docker/[email protected]
with:
images: glossawy/rss-feed-editor-frontend
tags: type=raw,value=edge
if: ${{ github.event_name == 'push' }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and Push
uses: docker/build-push-action@v5
with:
file: ./Dockerfile.frontend
context: .
platforms: linux/arm64,linux/amd64
push: true
tags: ${{ steps.meta_release.outputs.tags || steps.meta_push.outputs.tags }}
labels: ${{ steps.meta_release.outputs.labels || steps.meta_push.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max