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-11-26 06:27:46 +08:00
uses : docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # 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-23 03:02:56 +08:00
uses : docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v1
2021-10-11 15:56:35 +08:00
-
name : Set up Docker Buildx
2024-10-08 01:32:57 +08:00
uses : docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v1
2021-10-11 15:56:35 +08:00
-
name : Login to Docker Hub
if : github.event_name != 'pull_request'
2024-07-23 03:03:03 +08:00
uses : docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v1
2021-10-11 15:56:35 +08:00
with :
username : ${{ secrets.DOCKER_USERNAME }}
password : ${{ secrets.DOCKER_PASSWORD }}
-
name : Build
2024-12-10 00:45:13 +08:00
uses : docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # 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 }}