diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a4d030d..65b573f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,14 +24,14 @@ jobs: - name: Checkout your repository using git uses: actions/checkout@v4 - name: Make destination directory for compiled CSS - run: mkdir -vp ./css + run: mkdir -vp /css - name: Install, build, and upload your site uses: withastro/action@v2 - name: Compile CSS from SCSS files uses: gha-utilities/sass-build@v0.5.1 with: source: ./sass/styles.scss - destination: ./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)