2021-09-07 17:34:49 +08:00
name : "docker: build latest container"
2021-09-07 17:12:07 +08:00
on :
push :
2021-10-25 09:45:51 +08:00
tags :
- '*'
2022-06-14 16:16:09 +08:00
workflow_dispatch : {}
2021-09-07 17:12:07 +08:00
2022-03-19 04:47:20 +08:00
permissions :
contents : read
2021-09-07 17:12:07 +08:00
jobs :
2021-09-07 17:34:49 +08:00
build-latest-container :
2021-09-07 17:12:07 +08:00
runs-on : [ ubuntu-latest]
steps :
-
name : Checkout
2024-03-19 02:06:22 +08:00
uses : actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v2
2021-09-07 17:12:07 +08:00
-
name : Docker meta
id : docker_meta
2024-02-05 23:52:01 +08:00
uses : docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v3
2021-09-07 17:12:07 +08:00
with :
images : |
chrislusf/seaweedfs
ghcr.io/chrislusf/seaweedfs
tags : |
2021-10-25 09:45:51 +08:00
type=raw,value=latest
2021-09-07 17:12:07 +08: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
2024-07-23 03:02:56 +08:00
uses : docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v1
2021-09-07 17:12:07 +08:00
-
name : Set up Docker Buildx
2024-08-06 02:12:01 +08:00
uses : docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v1
2021-09-07 17:12:07 +08:00
with :
buildkitd-flags : "--debug"
-
name : Login to Docker Hub
if : github.event_name != 'pull_request'
2024-07-23 03:03:03 +08:00
uses : docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v1
2021-09-07 17:12:07 +08:00
with :
username : ${{ secrets.DOCKER_USERNAME }}
password : ${{ secrets.DOCKER_PASSWORD }}
-
name : Login to GHCR
if : github.event_name != 'pull_request'
2024-07-23 03:03:03 +08:00
uses : docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v1
2021-09-07 17:12:07 +08:00
with :
registry : ghcr.io
username : ${{ secrets.GHCR_USERNAME }}
password : ${{ secrets.GHCR_TOKEN }}
-
name : Build
2024-08-13 01:17:02 +08:00
uses : docker/build-push-action@16ebe778df0e7752d2cfcbd924afdbbd89c1a755 # v2
2021-09-07 17:12:07 +08: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 }}