-
Notifications
You must be signed in to change notification settings - Fork 100
37 lines (30 loc) · 977 Bytes
/
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
name: build and push docker image
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
- name: install buildx
id: buildx
uses: crazy-max/ghaction-docker-buildx@v1
with:
version: latest
- name: login to docker hub
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
- name: build the image
run: |
docker buildx build \
--tag brotandgames/ciao:$(cat ./public/version) \
--platform linux/amd64,linux/arm/v7,linux/arm64 .
- name: push the image
if: "!contains(github.ref, '-rc')"
run: |
docker buildx build --push \
--tag brotandgames/ciao:$(cat ./public/version) \
--tag brotandgames/ciao:latest \
--platform linux/amd64,linux/arm/v7,linux/arm64 .