ipv6-test-backend/.gitea/workflows/ci.yml

26 lines
406 B
YAML
Raw Permalink Normal View History

2024-08-17 10:08:45 +08:00
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
submodules: true
2024-08-20 13:38:32 +08:00
# - name: Install Docker
# run: curl -fsSL https://get.docker.com | sh
2024-08-17 10:08:45 +08:00
- name: Deploy with Docker
2024-08-19 18:02:50 +08:00
run: docker compose up --build --force-recreate -d
2024-08-17 10:08:45 +08:00