Some checks failed
Auto-build / Automatic-Packaging (push) Failing after 9m5s
- 移除了工作流中冗余的步骤注释 - 在Dockerfile中添加依赖预下载步骤 - 简化了构建命令结构
16 lines
453 B
YAML
16 lines
453 B
YAML
name: Auto-build
|
|
run-name: Automatic-Packaging 📦
|
|
on: [ push ]
|
|
env:
|
|
BARE_REPO_DIR: https://git.alina-dace.info/Dace/Animo-Server.git
|
|
CLONED_REPO_DIR: ./
|
|
jobs:
|
|
Automatic-Packaging:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Git Repo
|
|
uses: https://git.alina-dace.info/actions/checkout@v4
|
|
- name: Docker build
|
|
working-directory: ${{ env.CLONED_REPO_DIR }}
|
|
run: docker build -t animo-server:latest ./
|