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
2024-07-09 00:21:13 +08:00
uses : docker/setup-qemu-action@5927c834f5b4fdf503fca6f4c7eccda82949e1ee # v1
2021-10-11 15:56:35 +08:00
-
name : Set up Docker Buildx
2024-07-09 00:21:25 +08:00
uses : docker/setup-buildx-action@4fd812986e6c8c2a69e18311145f9371337f27d4 # v1
2021-10-11 15:56:35 +08:00
-
name : Login to Docker Hub
if : github.event_name != 'pull_request'
2024-06-04 05:17:18 +08:00
uses : docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v1
2021-10-11 15:56:35 +08:00
with :
username : ${{ secrets.DOCKER_USERNAME }}
password : ${{ secrets.DOCKER_PASSWORD }}
-
name : Build
2024-07-09 00:21:37 +08:00
uses : docker/build-push-action@1a162644f9a7e87d8f4b053101d1d9a712edc18c # 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 }}