Add action
Some checks failed
Deploy / deploy (push) Failing after 1m14s

This commit is contained in:
Hugo Mårdbrink 2025-12-03 21:18:37 +01:00
parent 65ff41d412
commit e689df1dfe
2 changed files with 19 additions and 1 deletions

View file

@ -0,0 +1,18 @@
name: Deploy
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build and deploy
run: |
podman build -t hugo-home:latest .
podman stop hugo-home 2>/dev/null || true
podman rm hugo-home 2>/dev/null || true
podman run -d --name hugo-home --restart=always -p 127.0.0.1:8080:8080 hugo-home:latest