From 0cb6d55656bcf2729f8c184069fc753e7e9ffb83 Mon Sep 17 00:00:00 2001 From: esheyw Date: Tue, 23 Jan 2024 09:00:12 -0800 Subject: [PATCH 1/2] Update main.yaml attempt #4 to include sass source map --- .github/workflows/main.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 5d700b1..965d162 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -19,8 +19,7 @@ jobs: source: styles/main.scss # Path(s) compiled CSS should be saved, eg. ~/workspace_sass/assets/css/main.css destination: styles/main.css - sourceMap: true - outFile: styles/main.css + sourceMap: styles/main.css.map # Substitute the Manifest and Download URLs in the module.json - name: Substitute Manifest and Download Links For Versioned Ones From c3025730e00228b3080de79646a2da2e86b16224 Mon Sep 17 00:00:00 2001 From: esheyw Date: Tue, 23 Jan 2024 09:03:56 -0800 Subject: [PATCH 2/2] Update main.yaml workflow attempt #5 --- .github/workflows/main.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 965d162..0491382 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -19,7 +19,7 @@ jobs: source: styles/main.scss # Path(s) compiled CSS should be saved, eg. ~/workspace_sass/assets/css/main.css destination: styles/main.css - sourceMap: styles/main.css.map + sourceMap: main.css.map # Substitute the Manifest and Download URLs in the module.json - name: Substitute Manifest and Download Links For Versioned Ones @@ -34,7 +34,7 @@ jobs: download: https://github.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/module.zip # Create a zip file with all files required by the module to add to the release - - run: zip -r ./module.zip module.json LICENSE styles/*.css styles/*.map scripts/ templates/ lang/ + - run: zip -r ./module.zip module.json LICENSE styles/ scripts/ templates/ lang/ # Create a release for this specific version - name: Update Release with Files