MBTI/.gitea/workflows/web_build.yaml
zhangzhipeng d23077570f
Some checks are pending
MBTI Static Project Nginx Deploy / build-and-deploy (push) Waiting to run
init
2025-05-09 11:28:05 +08:00

40 lines
950 B
YAML

name: MBTI Static Project Nginx Deploy
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout MBTI code
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build Nginx image for MBTI
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
push: false
tags: mbti-nginx:latest
- name: Stop and remove existing container
run: |
if docker ps -a --format '{{.Names}}' | grep -q 'mbti-nginx'; then
docker stop mbti-nginx
docker rm mbti-nginx
fi
- name: Run MBTI Nginx container
run: |
docker run -d \
--name mbti-nginx \
-p 8989:80 \
-v /path/to/mbti/static:/usr/share/nginx/html \
mbti-nginx:latest