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] on: [push]
jobs: jobs:
deploy: deploy:
container:
image: .
steps: steps:
- uses: actions/checkout@v4 - name: Checkout
- run: | uses: actions/checkout@v3
zola build - name: Build container
run: |
docker build -t jessite .
- name: Deploy site
run: |
echo "TODO: Actually deploy stuff"