diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2022-12-07 10:10:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-07 10:10:29 +0100 |
commit | 741f32ed5d15382b4530147203bcaefbd1c83790 (patch) | |
tree | 7eabdf63d204a2ffd4ff39b0481141b1c7e07768 /.github/workflows | |
parent | 172aade011564baed7fde61dc5c2174e08b7d153 (diff) | |
parent | de3c5f2b1c7180b7aad771bbf50d02082c480d14 (diff) | |
download | nextcloud-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.yml | 6 | ||||
-rw-r--r-- | .github/workflows/node.yml | 6 |
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)" |