Get rid of unnecessary container key in CI.
Some checks failed
Build and Deploy / deploy (push) Failing after 24s

This commit is contained in:
Jessica Canady 2024-04-21 11:02:32 -04:00
parent abf86119f4
commit 0bb4efff42

View file

@ -2,9 +2,12 @@ name: Build and Deploy
on: [push]
jobs:
deploy:
container:
image: .
steps:
- uses: actions/checkout@v4
- run: |
zola build
- name: Checkout
uses: actions/checkout@v3
- name: Build container
run: |
docker build -t jessite .
- name: Deploy site
run: |
echo "TODO: Actually deploy stuff"