From 349d93c993c65bf78f9bb97c42e57d7c90c78c8d Mon Sep 17 00:00:00 2001 From: Dante Date: Wed, 1 Mar 2023 20:17:39 +0000 Subject: [PATCH] Fix wrong config filename --- .github/workflows/updater.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/updater.sh b/.github/workflows/updater.sh index 6b66e32..de8f362 100755 --- a/.github/workflows/updater.sh +++ b/.github/workflows/updater.sh @@ -116,7 +116,7 @@ done echo "Update latest version of conf/config.yaml" # Update the config.yaml with the latest version of it and add vars that will be replaced -configFilePath="conf/config-new.yaml" +configFilePath="conf/config.yaml" newConfigFilePath=$(tar -tf "$tempdir/$version" | grep 'example-config.yaml') tar -xf "$tempdir/$version" --directory "$tempdir" "$newConfigFilePath" mv "$tempdir/$newConfigFilePath" "$configFilePath"