-
Notifications
You must be signed in to change notification settings - Fork 6
47 lines (47 loc) · 1.24 KB
/
docker.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
name: Docker
on:
push:
branches: ['master']
paths-ignore:
- helm/
- .vscode/
- terraform-oci/
- tests/
- '*.md'
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Log into DockerHub
uses: docker/login-action@v2
with:
username: twixes
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: 'arm64'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
platforms: 'linux/amd64,linux/arm64'
- name: Build and push bot
uses: docker/build-push-action@v3
with:
push: true
context: .
tags: twixes/somsiad:latest
platforms: 'linux/amd64,linux/arm64'
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Build and push website
uses: docker/build-push-action@v3
with:
push: true
context: web
tags: twixes/somsiad-web:latest
platforms: 'linux/amd64,linux/arm64'
cache-from: type=gha
cache-to: type=gha,mode=max