2023-08-17 21:22:19 +08:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Deploy:
|
2024-05-25 12:20:45 +08:00
|
|
|
runs-on: ubuntu-22.04
|
2023-08-17 21:22:19 +08:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
|
|
|
|
- name: Install Docker
|
|
|
|
run: curl -fsSL https://get.docker.com | sh
|
|
|
|
|
|
|
|
- name: Deploy with Docker
|
|
|
|
run: docker compose up --build -d
|