2021-10-11 15:56:35 +08:00
name : "docker: build release containers for normal volume"
on :
push :
tags :
- '*'
2022-06-14 16:16:09 +08:00
workflow_dispatch : {}
2021-10-11 15:56:35 +08:00
2022-03-19 04:47:20 +08:00
permissions :
contents : read
2021-10-11 15:56:35 +08:00
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
2021-10-11 15:56:35 +08:00
-
name : Docker meta
id : docker_meta
2024-02-05 23:52:01 +08:00
uses : docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v3
2021-10-11 15:56:35 +08:00
with :
images : |
chrislusf/seaweedfs
tags : |
type=ref,event=tag
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
2021-10-11 15:56:35 +08:00
-
name : Set up Docker Buildx
2024-03-19 02:06:48 +08:00
uses : docker/setup-buildx-action@2b51285047da1547ffb1b2203d8be4c0af6b1f20 # v1
2021-10-11 15:56:35 +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
2021-10-11 15:56:35 +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
2021-10-11 15:56:35 +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 }}