site

Personal site for Zane
Log | Files | Refs

commit 3ecb23d28d31567c08bf0c098250f18f65fa5868
parent 2777b97e70ddade1ad8f0c94fe5e11d421987e18
Author: Zane Schaffer <101823296+znschaffer@users.noreply.github.com>
Date:   Sat, 13 Jan 2024 16:45:45 -0800

Update main.yml
Diffstat:
M.github/workflows/main.yml | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml @@ -8,12 +8,12 @@ jobs: steps: - uses: actions/checkout@v3 - name: setup output dir and copy images - run: mkdir out; cp -r src/img out/; cp src/*.css out/; cp -r src/fonts out/; + run: mkdir out; cp -r src/img out/; cp src/*.css out/; - name: convert markdown to html uses: docker://pandoc/core:edge with: entrypoint: /bin/sh - args: -c "cd src; find . -iname '*.md' -type f -exec sh -c 'pandoc -f markdown -t html5 -H header.html -c normalize.css -c fonts/font.css -c concrete.css -s ${0} -o ../out/${0%.md}.html' {} \;" + args: -c "cd src; find . -iname '*.md' -type f -exec sh -c 'pandoc -f markdown -t html5 -H header.html -c normalize.css -c concrete.css -s ${0} -o ../out/${0%.md}.html' {} \;" - run: tree - name: Deploy