Files
hhl_project/.gitea/workflows/workflow.yaml
sangge bb2a674bd1
All checks were successful
Deploy Static Website / Deploy to Web Server (push) Successful in 1m49s
feat: update ci
2023-12-25 00:27:21 +08:00

31 lines
622 B
YAML

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:latest