mirror of
https://github.com/woodchen-ink/random-api-go.git
synced 2025-07-18 05:42:01 +08:00
79 lines
1.9 KiB
YAML
79 lines
1.9 KiB
YAML
name: Docker
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
tags:
|
|
- v*
|
|
paths-ignore:
|
|
- 'lankong_tools/**'
|
|
- '*.md'
|
|
- '.github/**'
|
|
|
|
env:
|
|
IMAGE_NAME: random-api-go
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
cache: 'npm'
|
|
cache-dependency-path: web/package-lock.json
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.23'
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: woodchen
|
|
password: ${{ secrets.ACCESS_TOKEN }}
|
|
|
|
- name: Build and push multi-arch image
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
file: Dockerfile
|
|
push: true
|
|
tags: woodchen/${{ env.IMAGE_NAME }}:latest
|
|
platforms: linux/amd64,linux/arm64
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max
|
|
|
|
- name: Execute deployment commands
|
|
uses: appleboy/ssh-action@master
|
|
with:
|
|
host: ${{ secrets.SERVER_HOST }}
|
|
username: root
|
|
key: ${{ secrets.SERVER_SSH_KEY }}
|
|
script: |
|
|
# 拉取最新镜像
|
|
docker pull woodchen/random-api-go:latest
|
|
|
|
# 停止并删除旧容器
|
|
docker stop random-api-go || true
|
|
docker rm random-api-go || true
|
|
|
|
# 启动新容器
|
|
docker compose -f /opt/1panel/docker/compose/random-api-go/docker-compose.yml up -d
|
|
|
|
# 清理未使用的镜像
|
|
docker image prune -f
|