From 910d2dfb5cc4fbd9be0ff482ad4d45b82e47a9fc Mon Sep 17 00:00:00 2001 From: Eric Robsky Huntley Date: Mon, 26 Feb 2024 12:07:47 -0500 Subject: [PATCH] another one --- .github/workflows/deploy.yml | 4 ++-- sass/styles.scss | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1b73ba7..fe17fe3 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -26,12 +26,12 @@ jobs: - name: Install, build, and upload your site uses: withastro/action@v2 - name: Make destination directory for compiled CSS - run: mkdir -vp assets/css + run: mkdir -vp ./css - name: Compile CSS from SCSS files uses: gha-utilities/sass-build@v0.5.1 with: source: ./sass/styles.scss - destination: assets/css/styles.css + destination: ./css/styles.css # with: # path: . # The root location of your Astro project inside the repository. (optional) # node-version: 20 # The specific version of Node that should be used to build your site. Defaults to 20. (optional) diff --git a/sass/styles.scss b/sass/styles.scss index 8eaf422..5343d2a 100644 --- a/sass/styles.scss +++ b/sass/styles.scss @@ -2,4 +2,4 @@ $danger: rgb(178, 31, 36); -@import "../node_modules/bulma/bulma.sass"; \ No newline at end of file +@import "node_modules/bulma/bulma.sass"; \ No newline at end of file