2021-09-07 09:34:49 +00:00
name : "docker: build latest container"
2021-09-07 09:12:07 +00:00
on :
push :
2021-10-25 01:45:51 +00:00
tags :
- '*'
2022-06-14 08:16:09 +00:00
workflow_dispatch : {}
2021-09-07 09:12:07 +00:00
2022-03-18 20:47:20 +00:00
permissions :
contents : read
2021-09-07 09:12:07 +00:00
jobs :
2021-09-07 09:34:49 +00:00
build-latest-container :
2021-09-07 09:12:07 +00:00
runs-on : [ ubuntu-latest]
steps :
-
name : Checkout
2023-10-23 20:08:43 +00:00
uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v2
2021-09-07 09:12:07 +00:00
-
name : Docker meta
id : docker_meta
2023-12-18 16:44:19 +00:00
uses : docker/metadata-action@9dc751fe249ad99385a2583ee0d084c400eee04e # v3
2021-09-07 09:12:07 +00:00
with :
images : |
chrislusf/seaweedfs
ghcr.io/chrislusf/seaweedfs
tags : |
2021-10-25 01:45:51 +00:00
type=raw,value=latest
2021-09-07 09:12:07 +00:00
labels : |
org.opencontainers.image.title=seaweedfs
org.opencontainers.image.description=SeaweedFS is a distributed storage system for blobs, objects, files, and data lake, to store and serve billions of files fast!
org.opencontainers.image.vendor=Chris Lu
-
name : Set up QEMU
2023-09-19 01:47:34 +00:00
uses : docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v1
2021-09-07 09:12:07 +00:00
-
name : Set up Docker Buildx
2023-09-19 01:47:34 +00:00
uses : docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v1
2021-09-07 09:12:07 +00:00
with :
buildkitd-flags : "--debug"
-
name : Login to Docker Hub
if : github.event_name != 'pull_request'
2023-09-19 01:47:34 +00:00
uses : docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v1
2021-09-07 09:12:07 +00:00
with :
username : ${{ secrets.DOCKER_USERNAME }}
password : ${{ secrets.DOCKER_PASSWORD }}
-
name : Login to GHCR
if : github.event_name != 'pull_request'
2023-09-19 01:47:34 +00:00
uses : docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v1
2021-09-07 09:12:07 +00:00
with :
registry : ghcr.io
username : ${{ secrets.GHCR_USERNAME }}
password : ${{ secrets.GHCR_TOKEN }}
-
name : Build
2023-11-20 16:01:09 +00:00
uses : docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 # v2
2021-09-07 09:12:07 +00:00
with :
context : ./docker
push : ${{ github.event_name != 'pull_request' }}
file : ./docker/Dockerfile.go_build
platforms : linux/amd64, linux/arm, linux/arm64, linux/386
tags : ${{ steps.docker_meta.outputs.tags }}
labels : ${{ steps.docker_meta.outputs.labels }}