Files
NasRobot/.gitea/workflows/push.yml

45 lines
1.4 KiB
YAML

name: Docker Build & Deploy
on:
workflow_dispatch: # 手动触发
push: # 自动触发
branches: [ main ]
env: # 全局环境变量
COMPOSE_PROJECT_NAME: nasrobot # 定义 compose 项目名称
build:
runs-on: ubuntu-latest
steps:
- uses: https://github.com/actions/checkout@v4
- name: Use Node.js
uses: https://github.com/actions/setup-node@v3
with:
node-version: '18.17'
- run: npm ci
- run: npm run lint
- run: npm run test
- run: npm run build:prod
env:
NODE_OPTIONS: --max_old_space_size=4096
publish:
runs-on: cth-ubuntu-latest
needs: build
if: gitea.ref == 'refs/heads/main'
steps:
- uses: https://github.com/actions/checkout@v4
- name: Set up Docker Buildx
uses: https://github.com/docker/setup-buildx-action@v3
with:
config-inline: |
[registry."<my-private-unsecure-git-repository-ip-address>:5000"]
http = true
insecure = true
- name: Build and push Docker image
uses: https://github.com/docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: "<my-private-unsecure-git-repository-ip-address>:5000/<my-docker-image>:$,<my-private-unsecure-git-repository-ip-address>:5000/<my-docker-image>:latest"