mirror of
https://github.com/0-8-4/miui-auto-tasks.git
synced 2024-11-28 10:38:42 +00:00
ea361a0e04
* chore: captcha的参数拷贝,避免修改原参数 chore: 提升pylint分数,使代码更加规范 * fix: `@validator` cannot be applied to instance methods * deleted: .pylintrc * chore: no-else-return * chore: 优化代码,使其更符合PEP 8规范 * chore: 优化代码,使其更符合PEP 8规范 * chore: 优化代码,使其更符合PEP 8规范 * chore: 添加代码规范等级 * fix: fix dockerfile * modified: Dockerfile * chore: 更新docker ci
48 lines
1.0 KiB
YAML
48 lines
1.0 KiB
YAML
# author: 0-8-4
|
||
# date: 24-11-2022 18:34 AEDT
|
||
# last_update: 13-11-2023 22:57 AEDT
|
||
#
|
||
# This script is used to automatically build docker image and
|
||
# push to DockerHub when every new release is published
|
||
|
||
name: DockerHub CI
|
||
|
||
on:
|
||
release:
|
||
types: [published]
|
||
|
||
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: ${{ secrets.DOCKERHUB_USERNAME }}
|
||
password: ${{ secrets.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 }}
|
||
|