hugo.mardbrink.se/.forgejo/workflows/deploy.yml
Workflow config file is invalid. Please check your config file: yaml: line 3: mapping values are not allowed in this context
2025-12-03 21:18:37 +01:00

20 lines
365 B
YAML

name: Build and Deploy
on:
push:
branches: [main]
jobs:
deploy:
runs-on: native
steps:
- uses: actions/checkout@v4
- name: Build Docker image
run: podman build -t
localhost/hugo-home:latest .
- name: Restart container
run: systemctl --user restart
podman-hugo-home.service || true