SindreKjelsrud
e1db45a3bb
Some checks are pending
Deploy website / build-and-deploy (push) Waiting to run
Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
16 lines
340 B
YAML
16 lines
340 B
YAML
name: Deploy website
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
paths-ignore:
|
|
- 'README.md' # Ignore changes to README.md
|
|
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: [self-hosted, linux]
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Run docker-compose
|
|
run: docker compose up -d --build
|