feat: create ci

This commit is contained in:
2023-12-25 00:25:13 +08:00
parent 348a826919
commit e9a93d8686
2 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
name: Deploy Static Website
on:
push:
branches:
- main
jobs:
deploy:
name: Deploy to Web Server
runs-on: ubuntu-latest
container:
image: catthehacker/ubuntu:act-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
with:
driver: docker
- name: Build Docker image
run: |
docker buildx build . -t git.mamahaha.work/sangge/hhl -f Dockerfile
- name: Start Docker
run: |
docker run -d -p 4010:80 git.mamahaha.work/sangge/hhl