miui-auto-tasks/.github/workflows/docker-image.yml
0-8-4 5652ee997f
GitHub Action 自动化编译推送 docker镜像脚本 (#64)
* Create template docker-image.yml

* add: script that automatically build docker image and push to DockerHub

* add: manually trigger
2022-11-28 01:48:17 +11:00

48 lines
1.0 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# author: 0-8-4
# date 24-11-2022 1834 AEDT
#
# This script is used to automatically build docker image and
# push to DockerHub when every new release is published
name: Docker Image CI
on:
release:
types: [published]
workflow_dispatch:
env:
DOCKERHUB_REPO: o1si/miui-auto-tasks
jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secret.DOCKERHUB_USERNAME }}
password: ${{ secret.DOCKERHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
with:
push: true
platforms: |
linux/amd64
linux/arm64
tags: |
${{ env.DOCKERHUB_REPO }}:latest
${{ env.DOCKERHUB_REPO }}:${{ github.event.release.tag_name }}