diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 784c203184175a98ea68e6bf5329514fe48fff9b..bda57632b8cc4718932f4e65f49952935861108b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,9 @@ stages: - test + - build - performance - dast + - publish - deploy variables: @@ -12,15 +14,22 @@ include: - project: "e/infra/ecloud/nextcloud-apps/ci-templates" ref: main file: "nc-apps-checkout-deploy.yml" -# - project: "e/infra/ecloud/nextcloud-apps/ci-templates" -# ref: main -# file: "mr-review-tools.yml" -# - project: "e/infra/ecloud/nextcloud-apps/ci-templates" -# ref: main -# file: "git-operations.yml" -# - project: "e/infra/ecloud/nextcloud-apps/ci-templates" + - project: "e/infra/ecloud/nextcloud-apps/ci-templates" # ref: main -# file: "populate-code-climate-default-config.yml" + ref: dev/001-publish-app-in-pkg-registry + file: "nc-publish-app.yml" + +copy-theme-files: + stage: build + image: + name: alpine/git:v2.49.0 + entrypoint: [""] + script: + - mkdir -p dist/${APP_NAME} + - git archive ${CI_COMMIT_SHA} | tar -x -C dist/${APP_NAME} + artifacts: + paths: + - dist/ .deploy:nextcloud-app-by-checkout: script: diff --git a/README.md b/README.md index cc41e5112b384d7b9ac86925cd3ad7201a90a86c..9897710d69d71ae4f28d82a780fbb487c79c3559 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,11 @@ -Nextcloud theme for /e/ - nextcloud V20 compatible version +# Murena Workspace theme for Nextcloud +## Installation -# Installation +Deploy theme in nextcloud/themes directory. -deploy theme in nextcloud/themes directory - -use occ to update mimetypelist.js file and clear image cache : +Use occ to update mimetypelist.js file and clear image cache: ``` occ maintenance:theme:update ``` - - -# License - -The project is licensed under [AGPL](LICENSE). diff --git a/defaults.php b/defaults.php index 87ee15465bf522cb42ff37e157cc767c786a0df7..1614778aeca1a1ea5fe538786bfe7beadc258e35 100644 --- a/defaults.php +++ b/defaults.php @@ -129,7 +129,7 @@ class OC_Theme { * @return string documentation link */ public function buildDocLinkToKey($key) { - return $this->getDocBaseUrl() . '/server/27/go.php?to=' . $key; + return $this->getDocBaseUrl() . '/server/29/go.php?to=' . $key; }