commit a8fa315001c0cc23aff4653619bf5fdf4607ba59 parent f679cdaf897de870b5863defe1f9b111731fcf6d Author: Zane Schaffer <101823296+znschaffer@users.noreply.github.com> Date: Sat, 2 Dec 2023 10:04:07 -0800 Update main.yml Diffstat:
| M | .github/workflows/main.yml | | | 8 | +------- |
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml @@ -9,17 +9,11 @@ jobs: - uses: actions/checkout@v3 - name: setup output dir and copy images run: mkdir out; cp -r src/img out/ - - name: Compile CSS from SCSS files - uses: gha-utilities/sass-build@v0.5.1 - with: - source: src/custom.scss - destination: out/custom.css - - 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 -c ./custom.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 -c ./normalize.css -c ./concrete.css -s ${0} -o ../out/${0%.md}.html' {} \;" - run: tree - name: Deploy