-
Notifications
You must be signed in to change notification settings - Fork 217
/
dockers.yml
50 lines (40 loc) · 1.18 KB
/
dockers.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
---
name: Build dockers
on:
push:
branches:
- master
tags:
- '*'
workflow_dispatch:
jobs:
docker:
name: Build dockers
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v2
with:
install: true
platforms: linux/amd64,linux/arm64/v8,linux/arm/v7
- uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: build and push in master
uses: docker/build-push-action@v4
if: ${{ github.event.release.tag_name == '' }}
with:
push: true
tags: redislabs/memtier-benchmark:edge
context: .
platforms: linux/amd64,linux/arm64/v8,linux/arm/v7
- name: build and push on release
uses: docker/build-push-action@v4
if: ${{ github.event.release.tag_name != '' }}
with:
push: true
tags: redislabs/memtier-benchmark:${{ github.event.release.tag_name }}
context: .
platforms: linux/amd64,linux/arm64/v8,linux/arm/v7