2022-05-14 13:40:32 +00:00
name : "docker: build release containers for all tags"
on :
push :
tags :
- '*'
2022-06-14 08:16:09 +00:00
workflow_dispatch : {}
2022-05-14 13:40:32 +00:00
permissions :
contents : read
jobs :
build-default-release-container :
runs-on : [ ubuntu-latest]
steps :
-
name : Checkout
2023-09-04 17:03:49 +00:00
uses : actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v2
2022-05-14 13:40:32 +00:00
-
name : Docker meta
id : docker_meta
2023-09-18 15:29:55 +00:00
uses : docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v3
2022-05-14 13:40:32 +00:00
with :
images : |
chrislusf/seaweedfs
tags : |
type=ref,event=tag,suffix=_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-18 15:29:51 +00:00
uses : docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v1
2022-05-14 13:40:32 +00:00
-
name : Set up Docker Buildx
2023-08-28 15:33:51 +00:00
uses : docker/setup-buildx-action@885d1462b80bc1c1c7f0b00334ad271f09369c55 # v1
2022-05-14 13:40:32 +00:00
-
name : Login to Docker Hub
if : github.event_name != 'pull_request'
2023-09-18 15:30:03 +00:00
uses : docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v1
2022-05-14 13:40:32 +00:00
with :
username : ${{ secrets.DOCKER_USERNAME }}
password : ${{ secrets.DOCKER_PASSWORD }}
-
name : Build
2023-09-18 15:29:59 +00:00
uses : docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v2
2022-05-14 13:40:32 +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=elastic,ydb,gocdk,tikv
2022-05-14 13:40:32 +00:00
platforms : linux/amd64
tags : ${{ steps.docker_meta.outputs.tags }}
labels : ${{ steps.docker_meta.outputs.labels }}