From 033cb46f7858f54731684539da13e4ea37f69021 Mon Sep 17 00:00:00 2001 From: Florian Schade Date: Fri, 28 Feb 2025 12:10:17 +0100 Subject: [PATCH] fix(web): use released artifacts for web --- services/web/Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/services/web/Makefile b/services/web/Makefile index 2b7e0b3da..99eadaed8 100644 --- a/services/web/Makefile +++ b/services/web/Makefile @@ -1,6 +1,6 @@ SHELL := bash NAME := web -WEB_ASSETS_VERSION = 552ff3c3f8e9543de653537087161c070698661e +WEB_ASSETS_VERSION = v1.0.0 include ../../.make/recursion.mk @@ -33,10 +33,7 @@ ci-node-generate: pull-assets .PHONY: pull-assets pull-assets: git clean -xfd assets - test ! -d assets/core/origin && git clone -b main --depth 1 https://github.com/opencloud-eu/web.git assets/core/origin || git checkout main; git pull - make -C assets/core/origin release - tar xfv assets/core/origin/release/web.tar.gz -C assets/core/ - rm -rf assets/core/origin + curl --fail -slL -o- https://github.com/opencloud-eu/web/releases/download/$(WEB_ASSETS_VERSION)/web.tar.gz | tar xzf - -C assets/core/ ############ licenses ############ .PHONY: ci-node-check-licenses