Artifacts
Some checks failed
Build Hugo Site / build (push) Failing after 26s
Build Hugo Site / deploy (push) Has been skipped

This commit is contained in:
Ben Hays 2023-10-22 22:28:46 -04:00
parent c032930d0b
commit 5f4134332b

View File

@ -23,10 +23,19 @@ jobs:
run: |
hugo \
--minify
- uses: actions/upload-artifact@master
with:
name: built-artifact
path: public
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@master
- uses: actions/download-artifact@master
with:
name: built-artifact
path: public
- name: pre-reqs
run: apt update; apt install -y sshpass
- name: Deploy to Server