2021-09-06 14:09:13 +08:00
name : "docker: build dev containers"
2021-08-29 11:12:30 +08:00
2021-05-12 10:26:31 +08:00
on :
push :
2021-09-06 14:09:13 +08:00
branches : [ master ]
2022-06-14 16:37:28 +08:00
workflow_dispatch : {}
2021-05-12 10:26:31 +08:00
2022-03-19 04:47:20 +08:00
permissions :
contents : read
2021-05-12 10:26:31 +08:00
jobs :
2021-09-07 13:54:29 +08:00
build-dev-containers :
2021-05-12 10:26:31 +08:00
runs-on : [ ubuntu-latest]
2021-08-28 10:33:08 +08:00
2021-05-12 10:26:31 +08:00
steps :
-
name : Checkout
2024-03-19 02:06:22 +08:00
uses : actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v2
2021-05-12 10:26:31 +08:00
-
name : Docker meta
id : docker_meta
2024-02-05 23:52:01 +08:00
uses : docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v3
2021-05-12 10:26:31 +08:00
with :
images : |
chrislusf/seaweedfs
ghcr.io/chrislusf/seaweedfs
tags : |
type=raw,value=dev
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-05-12 10:26:31 +08:00
-
name : Set up Docker Buildx
2024-08-06 02:12:01 +08:00
uses : docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v1
2021-05-12 10:26:31 +08:00
with :
buildkitd-flags : "--debug"
-
name : Login to Docker Hub
2021-05-12 10:38:36 +08:00
if : github.event_name != 'pull_request'
2024-07-23 03:03:03 +08:00
uses : docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v1
2021-05-12 10:26:31 +08:00
with :
username : ${{ secrets.DOCKER_USERNAME }}
password : ${{ secrets.DOCKER_PASSWORD }}
-
name : Login to GHCR
2021-05-12 10:38:36 +08:00
if : github.event_name != 'pull_request'
2024-07-23 03:03:03 +08:00
uses : docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v1
2021-05-12 10:26:31 +08:00
with :
registry : ghcr.io
username : ${{ secrets.GHCR_USERNAME }}
password : ${{ secrets.GHCR_TOKEN }}
-
name : Build
2024-10-01 02:17:13 +08:00
uses : docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v2
2021-05-12 10:26:31 +08:00
with :
context : ./docker
2021-05-12 10:38:36 +08:00
push : ${{ github.event_name != 'pull_request' }}
2021-05-12 10:26:31 +08:00
file : ./docker/Dockerfile.go_build
2021-09-30 01:52:53 +08:00
platforms : linux/amd64, linux/arm64
2021-05-12 10:26:31 +08:00
tags : ${{ steps.docker_meta.outputs.tags }}
labels : ${{ steps.docker_meta.outputs.labels }}