2022-05-17 09:56:14 +00:00
name : "docker: build release containers for all tags and large volume"
on :
push :
tags :
- '*'
2022-06-14 08:16:09 +00:00
workflow_dispatch : {}
2022-05-17 09:56:14 +00:00
permissions :
contents : read
jobs :
build-default-release-container :
runs-on : [ ubuntu-latest]
steps :
-
name : Checkout
2023-10-23 20:08:43 +00:00
uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v2
2022-05-17 09:56:14 +00:00
-
name : Docker meta
id : docker_meta
2023-12-04 15:29:12 +00:00
uses : docker/metadata-action@31cebacef4805868f9ce9a0cb03ee36c32df2ac4 # v3
2022-05-17 09:56:14 +00:00
with :
images : |
chrislusf/seaweedfs
tags : |
type=ref,event=tag,suffix=_large_disk_full
flavor : |
latest=false
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
2022-05-17 09:56:14 +00:00
-
name : Set up Docker Buildx
2023-09-19 01:47:34 +00:00
uses : docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v1
2022-05-17 09:56:14 +00:00
-
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
2022-05-17 09:56:14 +00:00
with :
username : ${{ secrets.DOCKER_USERNAME }}
password : ${{ secrets.DOCKER_PASSWORD }}
-
name : Build
2023-11-20 16:01:09 +00:00
uses : docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 # v2
2022-05-17 09:56:14 +00:00
with :
context : ./docker
push : ${{ github.event_name != 'pull_request' }}
file : ./docker/Dockerfile.go_build
2022-06-27 03:06:35 +00:00
build-args : TAGS=5BytesOffset,elastic,ydb,gocdk,tikv
2022-05-17 09:56:14 +00:00
platforms : linux/amd64
tags : ${{ steps.docker_meta.outputs.tags }}
labels : ${{ steps.docker_meta.outputs.labels }}