11 lines
374 B
YAML
11 lines
374 B
YAML
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: podman build -t hugo-home:latest .
|
|
- run: |
|
|
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
|
|
|