2022-05-14 21:40:32 +08:00
name : "docker: build release containers for all tags"
on :
push :
tags :
- '*'
2022-06-14 16:16:09 +08:00
workflow_dispatch : {}
2022-05-14 21:40:32 +08:00
permissions :
contents : read
jobs :
build-default-release-container :
runs-on : [ ubuntu-latest]
steps :
-
name : Checkout
2024-03-19 02:06:22 +08:00
uses : actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v2
2022-05-14 21:40:32 +08:00
-
name : Docker meta
id : docker_meta
2024-02-05 23:52:01 +08:00
uses : docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v3
2022-05-14 21:40:32 +08: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-19 09:47:34 +08:00
uses : docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v1
2022-05-14 21:40:32 +08:00
-
name : Set up Docker Buildx
2024-03-05 01:10:21 +08:00
uses : docker/setup-buildx-action@0d103c3126aa41d772a8362f6aa67afac040f80c # v1
2022-05-14 21:40:32 +08:00
-
name : Login to Docker Hub
if : github.event_name != 'pull_request'
2024-03-19 02:06:32 +08:00
uses : docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v1
2022-05-14 21:40:32 +08:00
with :
username : ${{ secrets.DOCKER_USERNAME }}
password : ${{ secrets.DOCKER_PASSWORD }}
-
name : Build
2024-03-19 02:06:40 +08:00
uses : docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v2
2022-05-14 21:40:32 +08:00
with :
context : ./docker
push : ${{ github.event_name != 'pull_request' }}
file : ./docker/Dockerfile.go_build
2024-01-12 00:58:10 +08:00
build-args : TAGS=elastic,ydb,gocdk,tikv,rclone
2022-05-14 21:40:32 +08:00
platforms : linux/amd64
tags : ${{ steps.docker_meta.outputs.tags }}
labels : ${{ steps.docker_meta.outputs.labels }}