diff --git a/.gitea/workflows/web_build.yaml b/.gitea/workflows/web_build.yaml new file mode 100644 index 0000000..3878b76 --- /dev/null +++ b/.gitea/workflows/web_build.yaml @@ -0,0 +1,40 @@ +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 \ No newline at end of file