18 lines
307 B
YAML
18 lines
307 B
YAML
name: CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
Deploy:
|
|
runs-on: self-hosted
|
|
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
|