-
Notifications
You must be signed in to change notification settings - Fork 2
64 lines (55 loc) · 1.84 KB
/
build-docker-image.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Build a Docker Image
on:
workflow_dispatch:
inputs:
foxglove_version:
description: "Specify the tag of the Foxglove Release you want to use.\nAvailable tags: https://github.com/foxglove/studio/pkgs/container/studio"
type: string
default: "latest"
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set SHORT_DATE env
run: echo "SHORT_DATE=$(date +%Y%m%d)" >> $GITHUB_ENV
shell: bash
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
version: latest
- name: Login to Docker Registry
uses: docker/login-action@v2
with:
registry: docker.io
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push (production)
if: github.ref_name == 'main'
uses: docker/build-push-action@v3
with:
platforms: linux/amd64, linux/arm64
push: true
build-args: |
FOXGLOVE_VERSION=${{ inputs.foxglove_version }}
tags: |
husarion/foxglove:${{ inputs.foxglove_version }}-${{ env.SHORT_DATE }}
husarion/foxglove:${{ inputs.foxglove_version }}
husarion/foxglove:latest
husarion/foxglove:nightly
cache-to: type=inline
- name: Build and push (feature branch)
if: github.ref_name != 'main'
uses: docker/build-push-action@v3
with:
platforms: linux/amd64, linux/arm64
push: true
build-args: |
FOXGLOVE_VERSION=${{ inputs.foxglove_version }}
tags: |
husarion/foxglove:${{ github.head_ref || github.ref_name }}-${{ inputs.foxglove_version }}
husarion/foxglove:nightly
cache-to: type=inline