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
on: [push]
on:
push:
branches: [main]
jobs:
deploy:
steps:
- name: Checkout
uses: actions/checkout@v4
- run: |
"test -f ${{ github.workspace}}/README.md"
- name: File Check
run: |
"test -f ./README.md"
- name: Build site
run: |
"${{ github.workspace }}/bin/zola build"