From 033d09ae04f250f8910c5f4e13437c7d55fedb79 Mon Sep 17 00:00:00 2001 From: alice Date: Mon, 26 Jun 2023 12:33:59 +0000 Subject: [PATCH] don't delete old releases --- .gitea/workflows/release-version.yml | 12 ++++++------ charts/stable/homebox/Chart.yaml | 2 +- charts/stable/homebox/values.yaml | 8 ++++---- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.gitea/workflows/release-version.yml b/.gitea/workflows/release-version.yml index c789574..d288039 100644 --- a/.gitea/workflows/release-version.yml +++ b/.gitea/workflows/release-version.yml @@ -43,11 +43,11 @@ jobs: done - name: Deploy to FTP Server - uses: https://github.com/SamKirkland/FTP-Deploy-Action@v4.3.4 + uses: https://github.com/genietim/ftp-action@releases/v4 with: - server: ${{ secrets.ftp_host }} - username: ${{ secrets.ftp_user }} - server-dir: ./ - local-dir: ./_build/ - protocol: ftps + host: ${{ secrets.ftp_host }} + user: ${{ secrets.ftp_user }} + remoteDir: ./ + localDir: ./_build/ + forceSsl: true password: ${{ secrets.ftp_password }} diff --git a/charts/stable/homebox/Chart.yaml b/charts/stable/homebox/Chart.yaml index 5de1e81..f4078ca 100644 --- a/charts/stable/homebox/Chart.yaml +++ b/charts/stable/homebox/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 name: homebox # This is the chart version. -version: 0.1.3 +version: 0.1.4 # A SemVer range of compatible Kubernetes versions (optional) # kubeVersion: ">=1.16.0-0" # What is this Application? diff --git a/charts/stable/homebox/values.yaml b/charts/stable/homebox/values.yaml index a50cde5..7c7f8f2 100644 --- a/charts/stable/homebox/values.yaml +++ b/charts/stable/homebox/values.yaml @@ -21,21 +21,21 @@ fullnameOverride: "" homebox: env: HBOX_MODE: production #application mode used for runtime behavior can be one of: development, production - HBOX_WEB_PORT: 7745 #port to run the web server on, if you're using docker do not change this + HBOX_WEB_PORT: "7745" #port to run the web server on, if you're using docker do not change this # HBOX_WEB_HOST: #host to run the web server on, if you're using docker do not change this HBOX_OPTIONS_ALLOW_REGISTRATION: true #allow users to register themselves HBOX_OPTIONS_AUTO_INCREMENT_ASSET_ID: true #auto increments the asset_id field for new items - HBOX_WEB_MAX_UPLOAD_SIZE: 10 #maximum file upload size supported in MB + HBOX_WEB_MAX_UPLOAD_SIZE: "10" #maximum file upload size supported in MB HBOX_STORAGE_DATA: /data/ #path to the data directory, do not change this if you're using docker HBOX_STORAGE_SQLITE_URL: /data/homebox.db?_fk=1 #sqlite database url, in you're using docker do not change this HBOX_LOG_LEVEL: info #log level to use, can be one of: trace, debug, info, warn, error, critical HBOX_LOG_FORMAT: text #log format to use, can be one of: text, json # HBOX_MAILER_HOST: #email host to use, if not set no email provider will be used - HBOX_MAILER_PORT: 587 #email port to use + HBOX_MAILER_PORT: "587" #email port to use # HBOX_MAILER_USERNAME: #email user to use # HBOX_MAILER_PASSWORD: #email password to use # HBOX_MAILER_FROM: #email from address to use - HBOX_SWAGGER_HOST: 7745 #swagger host to use, if not set swagger will be disabled + HBOX_SWAGGER_HOST: "7745" #swagger host to use, if not set swagger will be disabled HBOX_SWAGGER_SCHEMA: http #swagger schema to use, can be one of: http, https ingress: