Some checks failed
Deploy faithshort to production / deploy (push) Failing after 10s
18 lines
290 B
YAML
18 lines
290 B
YAML
name: Deploy faithshort to production
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- production
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: docker
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Deploy with Docker Compose
|
|
run: |
|
|
docker compose up -d --build
|