From 46a19d08e55513d24e8458752289e121aa7d6f99 Mon Sep 17 00:00:00 2001 From: Antoine Nguyen Date: Fri, 26 Apr 2024 13:46:08 +0200 Subject: [PATCH] Fix #515 --- .github/workflows/installer.yml | 5 +++++ run.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/installer.yml b/.github/workflows/installer.yml index d90fec6..7a2b516 100644 --- a/.github/workflows/installer.yml +++ b/.github/workflows/installer.yml @@ -5,6 +5,11 @@ on: branches: [ master ] pull_request: branches: [ master ] + workflow_run: + branches: [ master ] + workflows: [Update version file] + types: + - completed jobs: test: diff --git a/run.py b/run.py index 7ae3f1b..15fb9bf 100755 --- a/run.py +++ b/run.py @@ -263,7 +263,7 @@ def main(input_args): components = [] for section in config.sections(): if section in ["general", "database", "mysql", "postgres", - "certificate", "letsencrypt"]: + "certificate", "letsencrypt", "backup"]: continue if (config.has_option(section, "enabled") and not config.getboolean(section, "enabled")):