Compare commits

..

No commits in common. "abf86119f4c92d4eed9d1458f1fb7fe8262e9d02" and "be47fe8f1dd72917c3597680563c3b027c88db8e" have entirely different histories.

3 changed files with 4 additions and 19 deletions

View file

@ -3,8 +3,11 @@ on: [push]
jobs: jobs:
deploy: deploy:
container: container:
image: . image: ghcr.io/catthehacker/ubuntu:act-22.04
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: github.com/taiki-e/install-action@v2
with:
tool: zola@0.17.1
- run: | - run: |
zola build zola build

View file

@ -1,10 +0,0 @@
FROM ghcr.io/getzola/zola:v0.17.1 as zola
MAINTAINER Jessica Phoenix Canady <jess@canady.tech>
COPY . /blog
WORKDIR /blog
EXPOSE 1111
ENTRYPOINT ["zola", "serve", "-i", "0.0.0.0"]

View file

@ -1,8 +0,0 @@
#!/bin/bash
set -e
cd "$(dirname "$0")/.."
docker build --tag jessite .
docker run -d -p 1111:1111 --rm --name jessite jessite