Skip to content

Commit

Permalink
ci(Makefile): add build_mdi_svg job
Browse files Browse the repository at this point in the history
Signed-off-by: Franziska Bath <[email protected]>
  • Loading branch information
fracado committed Nov 6, 2024
1 parent b4bf18c commit 6bf8715
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,17 @@ help: ## This help.
# thanks to https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
.DEFAULT_GOAL := help

build_mdi_svg: ## Build custom mdi svg
cd custom-npms/nc-mdi-svg && \
FONTAWESOME_PACKAGE_TOKEN=$(FONTAWESOME_PACKAGE_TOKEN) npm ci && \
npm run build

build_vue_icons_package: ## Build custom vue icons package
cd custom-npms/nc-vue-material-design-icons && \
FONTAWESOME_PACKAGE_TOKEN=$(FONTAWESOME_PACKAGE_TOKEN) npm ci && \
npm run build

build_nextcloud: build_vue_icons_package ## Build Nextcloud
build_nextcloud: build_mdi_svg build_vue_icons_package ## Build Nextcloud
composer install --no-dev -o && \
npm ci && \
npm run build
Expand Down

0 comments on commit 6bf8715

Please sign in to comment.