2022-06-15 22:13:21 +00:00
|
|
|
name: Build and push Docker image
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-03-01 22:42:29 +00:00
|
|
|
branches: [ main ]
|
2022-06-15 22:13:21 +00:00
|
|
|
paths:
|
|
|
|
- 'docker/**'
|
|
|
|
pull_request:
|
2023-03-01 22:42:29 +00:00
|
|
|
branches: [ main ]
|
2022-06-15 22:13:21 +00:00
|
|
|
paths:
|
|
|
|
- 'docker/**'
|
2022-07-09 10:19:38 +00:00
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
|
|
workflow_dispatch:
|
2022-06-15 22:13:21 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2023-01-12 20:04:25 +00:00
|
|
|
runs-on: ubuntu-22.04
|
2022-07-10 14:46:24 +00:00
|
|
|
env:
|
|
|
|
USERNAME: infinitime
|
2022-06-15 22:13:21 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Log in to Docker Hub
|
2022-07-10 14:46:24 +00:00
|
|
|
if: github.event_name != 'pull_request'
|
2022-06-15 22:13:21 +00:00
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
2022-07-08 20:48:59 +00:00
|
|
|
username: ${{ secrets.DOCKER_HUB_LOGIN_USERNAME }}
|
2022-06-15 22:13:21 +00:00
|
|
|
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
|
|
|
|
2022-07-03 19:42:23 +00:00
|
|
|
- name: Set up Docker metadata
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v4
|
|
|
|
with:
|
|
|
|
images: |
|
2022-07-10 14:46:24 +00:00
|
|
|
${{ secrets.DOCKER_HUB_IMAGE_USERNAME || env.USERNAME }}/infinitime-build
|
2022-07-03 19:42:23 +00:00
|
|
|
tags: |
|
|
|
|
type=sha
|
|
|
|
type=raw,value=latest
|
|
|
|
|
2022-06-15 22:13:21 +00:00
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
2022-07-03 19:42:23 +00:00
|
|
|
id: buildx
|
2022-06-15 22:13:21 +00:00
|
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
|
|
|
|
- name: Build and push
|
2022-07-10 14:46:24 +00:00
|
|
|
if: github.event_name != 'pull_request'
|
2022-06-15 22:13:21 +00:00
|
|
|
uses: docker/build-push-action@v3
|
|
|
|
with:
|
|
|
|
context: ./docker/
|
|
|
|
file: ./docker/Dockerfile
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
2022-06-26 21:19:23 +00:00
|
|
|
push: true
|
2022-07-03 19:42:23 +00:00
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
2022-07-10 14:46:24 +00:00
|
|
|
cache-from: type=registry,ref=${{ secrets.DOCKER_HUB_IMAGE_USERNAME || env.USERNAME }}/infinitime-build:buildcache
|
|
|
|
cache-to: type=registry,ref=${{ secrets.DOCKER_HUB_IMAGE_USERNAME || env.USERNAME }}/infinitime-build:buildcache,mode=max
|
2022-06-26 21:19:23 +00:00
|
|
|
|
|
|
|
- name: Build
|
2022-07-10 14:46:24 +00:00
|
|
|
if: github.event_name == 'pull_request'
|
2022-06-26 21:19:23 +00:00
|
|
|
uses: docker/build-push-action@v3
|
|
|
|
with:
|
|
|
|
context: ./docker/
|
|
|
|
file: ./docker/Dockerfile
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
|
|
|
push: false
|
2022-07-10 14:46:24 +00:00
|
|
|
cache-from: type=registry,ref=${{ secrets.DOCKER_HUB_IMAGE_USERNAME || env.USERNAME }}/infinitime-build:buildcache
|