Compare commits

..

2 commits

Author SHA1 Message Date
Jessica Canady a3f593b97e
WIP: Just try running the file check?
Some checks failed
Build and Deploy / deploy (push) Failing after 13s
2024-04-29 13:47:34 -04:00
Jessica Canady e24a5f4967
Only run deploy job on push to main branch. 2024-04-29 13:47:18 -04:00

View file

@ -1,12 +1,15 @@
name: Build and Deploy name: Build and Deploy
on: [push] on:
push:
branches: [main]
jobs: jobs:
deploy: deploy:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
- run: | - name: File Check
"test -f ${{ github.workspace}}/README.md" run: |
"test -f ./README.md"
- name: Build site - name: Build site
run: | run: |
"${{ github.workspace }}/bin/zola build" "${{ github.workspace }}/bin/zola build"