Add action
Some checks failed
Deploy / deploy (push) Failing after 32s

This commit is contained in:
Hugo Mårdbrink 2025-12-03 22:26:49 +01:00
parent da0184a89c
commit c41b8eab16

View file

@ -6,13 +6,14 @@
jobs: jobs:
deploy: deploy:
runs-on: native runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Build and deploy - name: Build and deploy
run: | run: |
sudo podman build -t hugo-home:latest . docker build -t hugo-home:latest .
sudo podman stop hugo-home 2>/dev/null || true docker stop hugo-home 2>/dev/null || true
sudo podman rm hugo-home 2>/dev/null || true docker rm hugo-home 2>/dev/null || true
sudo podman run -d --name hugo-home --restart=always -p 127.0.0.1:8080:8080 hugo-home:latest docker run -d --name hugo-home --restart=always -p 127.0.0.1:8080:8080 hugo-home:latest