2023-08-05 11:44:19 +08:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
2023-08-05 14:06:57 +08:00
|
|
|
Deploy:
|
2024-02-16 22:35:21 +08:00
|
|
|
runs-on: ubuntu-22.04
|
2023-08-05 11:44:19 +08:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-08-05 13:37:00 +08:00
|
|
|
with:
|
|
|
|
submodules: true
|
2023-08-05 11:44:19 +08:00
|
|
|
|
2023-08-05 13:26:07 +08:00
|
|
|
- name: Install Docker
|
|
|
|
run: curl -fsSL https://get.docker.com | sh
|
|
|
|
|
2023-08-05 14:06:57 +08:00
|
|
|
- name: Deploy with Docker
|
2023-08-05 13:24:39 +08:00
|
|
|
run: docker compose up --build -d
|