Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • stackspin/nextcloud
1 result
Show changes
Commits on Source (4)
# Changelog
## [0.15.20] - 2023-12-21
* Fix logic to decide source of nextcloud apps: pinned from upstream repo, or
unpinned from nextcloud app store.
## [0.15.19] - 2023-12-20
* Update nextcloud helm chart to v4.5.8.
......
......@@ -4,7 +4,7 @@ description: |
A helm chart for installing NextCloud and setting up ONLYOFFICE integration
name: nextcloud-onlyoffice
appVersion: NC-27.1.4-OO-7.2.2.56
version: 0.15.19
version: 0.15.20
icon: https://cdn.rawgit.com/docker-library/docs/defa5ffc7123177acd60ddef6e16bddf694cc35f/nextcloud/logo.svg
dependencies:
# https://artifacthub.io/packages/helm/nextcloud/nextcloud
......
......@@ -100,7 +100,7 @@ data:
{{- range $apps }}
{{- if not .name }}
echo "Skipping app {{ . }} without name variable set"
{{- else if and .github_repository .version .release_filename }}
{{- else if .version }}
# Apps with a pinned version number are downloaded from GitHub so we can
# update the pin with Renovatebot
......@@ -120,7 +120,7 @@ data:
# `raw_url`.
{{- $_ := set $ "version" .version}}
{{- if .raw_url }}
url="{{ tpl .raw_url }}"
url="{{ tpl .raw_url $ }}"
{{- else }}
url="https://github.com/{{ .github_repository }}/releases/download/{{ .version }}/{{ tpl .release_filename $ }}"
{{- end }} # end if .raw_url
......