From bc4142e998f0424007ce49f16d6f3c8d0b5d19f1 Mon Sep 17 00:00:00 2001 From: Marcin Kralka Date: Fri, 5 Jan 2024 00:54:36 +0100 Subject: [PATCH] Update static.yml Actually use sass-build action instead. --- .github/workflows/static.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index c05b236..ad669f1 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -32,10 +32,11 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Generate CSS - run: | - chmod +x ./scripts/Build.Unix.sh - ./scripts/Build.Unix.sh + - name: Compile CSS from SCSS files + uses: gha-utilities/sass-build@v0.5.1 + with: + source: source_scss/main.scss + destination: source/style.css - name: Setup Pages uses: actions/configure-pages@v4