2023-08-05 11:44:19 +08:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
2023-08-05 13:23:21 +08:00
|
|
|
runs-on: self-hosted
|
2023-08-05 11:44:19 +08:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
2023-08-05 13:26:07 +08:00
|
|
|
- name: Install Docker
|
|
|
|
run: curl -fsSL https://get.docker.com | sh
|
|
|
|
|
|
|
|
- name: Deploy
|
2023-08-05 13:24:39 +08:00
|
|
|
run: docker compose up --build -d
|