mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-04-24 10:31:09 +08:00
2.5.7 优化代码,修复全集收集只有第一次运行的bug,完善api功能
This commit is contained in:
@@ -19,5 +19,6 @@ coverage.xml
|
||||
.pytest_cache
|
||||
.hypothesis
|
||||
|
||||
auto_bangumi/tests
|
||||
auto_bangumi/conf/const_dev.py
|
||||
config/bangumi.json/config/bangumi.json
|
||||
|
||||
36
.github/workflows/docker.yml
vendored
Normal file
36
.github/workflows/docker.yml
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
name: ci
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'main'
|
||||
tags:
|
||||
- 'v*'
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
-
|
||||
name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v2
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
-
|
||||
name: Login to DockerHub
|
||||
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:
|
||||
context: .
|
||||
platforms: linux/amd64,linux/arm64
|
||||
push: true
|
||||
tags: ${{ secrets.DOCKERHUB_USERNAME }}/auto_bangumi:latest
|
||||
@@ -28,6 +28,7 @@
|
||||
- [安装说明](https://github.com/linuxserver/docker-qbittorrent)
|
||||
- [群晖安装 qBittorrent](https://post.smzdm.com/p/a5k64587/)
|
||||
|
||||
-----
|
||||
# 部署 AutoBangumi
|
||||
|
||||
## 在 Linux 主机中使用 **Docker Compose** 一键部署
|
||||
|
||||
Reference in New Issue
Block a user