From a48c5dfef0909899da2ff7b5012944df12bcf453 Mon Sep 17 00:00:00 2001 From: Manuel Weiser Date: Fri, 21 Feb 2025 22:58:54 +0100 Subject: [PATCH] workflow: rename update files to upgrade in GitHub release workflow --- .github/workflows/github-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml index ea7038a..5cd5a99 100644 --- a/.github/workflows/github-release.yml +++ b/.github/workflows/github-release.yml @@ -115,12 +115,12 @@ jobs: FILES_TO_UPLOAD="" # Always add firmware - if [ -f "update_filaman_firmware_v${VERSION}.bin" ]; then + if [ -f "upgrade_filaman_firmware_v${VERSION}.bin" ]; then FILES_TO_UPLOAD="$FILES_TO_UPLOAD upgrade_filaman_firmware_v${VERSION}.bin" fi # Add SPIFFS and full binary only if they exist - if [ -f "update_filaman_website_v${VERSION}.bin" ]; then + if [ -f "upgrade_filaman_website_v${VERSION}.bin" ]; then FILES_TO_UPLOAD="$FILES_TO_UPLOAD upgrade_filaman_website_v${VERSION}.bin" fi