summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2022-12-07 10:10:29 +0100
committerGitHub <noreply@github.com>2022-12-07 10:10:29 +0100
commit741f32ed5d15382b4530147203bcaefbd1c83790 (patch)
tree7eabdf63d204a2ffd4ff39b0481141b1c7e07768 /.github/workflows
parent172aade011564baed7fde61dc5c2174e08b7d153 (diff)
parentde3c5f2b1c7180b7aad771bbf50d02082c480d14 (diff)
downloadnextcloud-server-741f32ed5d15382b4530147203bcaefbd1c83790.tar.gz
nextcloud-server-741f32ed5d15382b4530147203bcaefbd1c83790.zip
Merge pull request #35622 from nextcloud/feat/auto-build-icons-sass-on-build
Automatically build sass and sass:icons after build
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/command-compile.yml6
-rw-r--r--.github/workflows/node.yml6
2 files changed, 0 insertions, 12 deletions
diff --git a/.github/workflows/command-compile.yml b/.github/workflows/command-compile.yml
index afcb4b362ad..090324e987b 100644
--- a/.github/workflows/command-compile.yml
+++ b/.github/workflows/command-compile.yml
@@ -86,12 +86,6 @@ jobs:
npm ci
npm run build --if-present
- - name: Build css
- run: npm run --if-present sass
-
- - name: Build icons css
- run: npm run --if-present sass:icons
-
- name: Commit and push default
if: ${{ needs.init.outputs.arg1 != 'fixup' && needs.init.outputs.arg1 != 'amend' }}
run: |
diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml
index 7173a224c24..443ed95dd24 100644
--- a/.github/workflows/node.yml
+++ b/.github/workflows/node.yml
@@ -45,12 +45,6 @@ jobs:
npm ci
npm run build --if-present
- - name: Build css
- run: npm run sass
-
- - name: Build icons css
- run: npm run sass:icons
-
- name: Check webpack build changes
run: |
bash -c "[[ ! \"`git status --porcelain `\" ]] || (echo 'Please recompile and commit the assets, see the section \"Show changes on failure\" for details' && exit 1)"