2021-06-14 04:08:45 +08:00
|
|
|
name: Build release Docker images
|
2021-04-26 23:31:50 +08:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- "*"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish_to_docker_hub:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-12-19 04:34:11 +08:00
|
|
|
- name: Set swap space
|
|
|
|
uses: pierotofy/set-swap-space@master
|
|
|
|
with:
|
|
|
|
swap-size-gb: 5
|
|
|
|
|
2021-04-26 23:31:50 +08:00
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Prepare tags
|
|
|
|
id: prep
|
|
|
|
run: |
|
2021-04-27 00:21:31 +08:00
|
|
|
DOCKER_IMAGE=milesmcc/shynet
|
2021-04-26 23:31:50 +08:00
|
|
|
VERSION=${GITHUB_REF#refs/tags/}
|
|
|
|
TAGS="${DOCKER_IMAGE}:${VERSION},${DOCKER_IMAGE}:latest"
|
|
|
|
echo ::set-output name=tags::${TAGS}
|
|
|
|
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
id: buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
|
|
|
|
- name: Login to DockerHub
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_HUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Build and push advanced image
|
|
|
|
id: docker_build
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
file: ./Dockerfile
|
2021-12-21 13:10:12 +08:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2021-04-26 23:31:50 +08:00
|
|
|
push: true
|
|
|
|
tags: ${{ steps.prep.outputs.tags }}
|