WIP: Check for existence of file.
Some checks failed
Build and Deploy / deploy (push) Failing after 13s

This commit is contained in:
Jessica Canady 2024-04-28 13:39:22 -04:00
parent d183ce1a87
commit b56da124db
Signed by: phoenix
SSH key fingerprint: SHA256:aaLOzOrLi+0n4eDZNQKH97PehwRt6KSE5fYJc+ZRKCQ

View file

@ -3,7 +3,11 @@ on: [push]
jobs: jobs:
deploy: deploy:
steps: steps:
- name: Build site - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: File test
run: |
"test -f ${{ github.workspace}}/README.md"
- name: Build site
run: | run: |
"${{ github.workspace }}/bin/zola build" "${{ github.workspace }}/bin/zola build"