hugo.mardbrink.se/.forgejo/workflows/deploy.yml
Hugo Mårdbrink 394637b52d
Some checks failed
Deploy / deploy (push) Failing after 1s
Add action
2025-12-03 21:38:21 +01:00

18 lines
451 B
YAML

name: Deploy
on:
push:
branches: [main]
jobs:
deploy:
runs-on: native
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