mirror of
https://github.com/woodchen-ink/webp_server_go.git
synced 2025-07-18 13:42:02 +08:00
59 lines
1.4 KiB
YAML
59 lines
1.4 KiB
YAML
name: Build docker images
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- '**.md'
|
|
- 'Makefile'
|
|
- 'config.json'
|
|
branches:
|
|
- 'master'
|
|
|
|
env:
|
|
IMAGE_NAME: webp-server-go
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- 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
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
file: Dockerfile
|
|
push: true
|
|
tags: woodchen/${{ env.IMAGE_NAME }}:latest
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
- 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/webp-server-go
|
|
|
|
# 停止并删除容器
|
|
docker stop webp-server-go || true
|
|
docker rm webp-server-go || true
|
|
|
|
# 启动容器
|
|
docker compose -f /opt/1panel/docker/compose/webp-server-go/docker-compose.yml up -d
|