add openssh, remove longer pause
All checks were successful
Hugo / build (push) Successful in 12s

This commit is contained in:
Brooke 2024-03-09 17:19:56 -05:00
parent 651129d49b
commit 6bca579431
3 changed files with 6 additions and 3 deletions

View file

@ -10,7 +10,7 @@ jobs:
runs-on: hugo-latest
steps:
- name: Grab packages
run: apk add rsync
run: apk add rsync openssh-client
- uses: actions/checkout@v4
- name: Run build task
run: hugo --minify

5
.gitignore vendored
View file

@ -11,4 +11,7 @@ hugo.darwin
hugo.linux
# Temporary lock file while building
/.hugo_build.lock
/.hugo_build.lock
# Local Act
act.yaml

View file

@ -5,7 +5,7 @@ python3 -m http.server $PORT --directory public/ &
SERVER_PID=$!
# Give it a moment to start
sleep 5
sleep 2
# Check if the server is running
if [ ! -d "/proc/$SERVER_PID" ]; then