SindreKjelsrud
267a10a1cd
All checks were successful
Deploy website / build-and-deploy (push) Successful in 6m15s
Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
16 lines
324 B
YAML
16 lines
324 B
YAML
name: Deploy website
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths-ignore:
|
|
- 'README.md' # Ignore changes to README.md
|
|
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: host
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Run docker-compose
|
|
run: docker compose up -d --build
|