2021-11-17 12:41:55 +01:00
|
|
|
name: Build docker image
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'main'
|
|
|
|
tags:
|
|
|
|
- 'v*'
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
packages: write
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: build and publish atuin image
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Check Out Repo
|
2023-03-28 22:44:23 +02:00
|
|
|
uses: actions/checkout@v3
|
2021-11-17 12:41:55 +01:00
|
|
|
|
2022-05-09 22:09:31 +02:00
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
|
2021-11-17 12:41:55 +01:00
|
|
|
- name: Docker meta
|
|
|
|
id: meta
|
2023-03-28 22:44:23 +02:00
|
|
|
uses: docker/metadata-action@v4
|
2021-11-17 12:41:55 +01:00
|
|
|
with:
|
2023-03-28 22:44:23 +02:00
|
|
|
images: ghcr.io/${{ github.repository }}
|
2021-11-17 12:41:55 +01:00
|
|
|
tags: |
|
|
|
|
type=ref,event=pr
|
|
|
|
type=ref,event=branch
|
|
|
|
type=semver,pattern={{version}}
|
|
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
id: buildx
|
2023-03-28 22:44:23 +02:00
|
|
|
uses: docker/setup-buildx-action@v2
|
2021-11-17 12:41:55 +01:00
|
|
|
|
|
|
|
- name: Login to Docker Hub
|
2023-03-28 22:44:23 +02:00
|
|
|
uses: docker/login-action@v2
|
2021-11-17 12:41:55 +01:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.actor }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Build and push
|
|
|
|
id: docker_build
|
2023-03-28 22:44:23 +02:00
|
|
|
uses: docker/build-push-action@v4
|
2021-11-17 12:41:55 +01:00
|
|
|
with:
|
|
|
|
context: ./
|
|
|
|
file: ./Dockerfile
|
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
|
|
|
push: true
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
2023-10-03 06:41:51 +02:00
|
|
|
platforms: linux/amd64 #,linux/arm64
|
2021-11-17 12:41:55 +01:00
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|
2023-02-26 23:13:31 +01:00
|
|
|
build-args: RUST_BACKTRACE=1
|
2021-11-17 12:41:55 +01:00
|
|
|
|
|
|
|
- name: Image digest
|
|
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|