From c47adcdca23cb8052e78a1ec1c724827b418cb6c Mon Sep 17 00:00:00 2001 From: tuntoja Date: Mon, 14 Oct 2024 18:41:00 +0200 Subject: [PATCH 1/3] fix(promote): fix promote behavior to handle new debian package naming --- .github/actions/promote-to-stable/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/promote-to-stable/action.yml b/.github/actions/promote-to-stable/action.yml index 209f10d38..638391969 100644 --- a/.github/actions/promote-to-stable/action.yml +++ b/.github/actions/promote-to-stable/action.yml @@ -95,7 +95,7 @@ runs: jf rt download $ARTIFACT --flat done - for ARTIFACT_DL in $(dir -1|grep -E ".+${{ inputs.distrib }}.+\.deb"); do + for ARTIFACT_DL in $(dir -1|grep -E ".+{{ steps.parse-distrib.outputs.package_distrib_name }}.+\.deb"); do ARCH=$(echo $ARTIFACT_DL | cut -d '_' -f3 | cut -d '.' -f1) echo "[DEBUG] - Promoting (upload) $ARTIFACT_DL to stable $TARGET_PATH." jf rt upload "$ARTIFACT_DL" "$TARGET_PATH" --deb "${{ inputs.distrib }}/main/$ARCH" From b4607ba616eecb3d6f0ec24092901d53a4b93450 Mon Sep 17 00:00:00 2001 From: tuntoja <58987095+tuntoja@users.noreply.github.com> Date: Tue, 15 Oct 2024 10:51:47 +0200 Subject: [PATCH 2/3] Update .github/actions/promote-to-stable/action.yml --- .github/actions/promote-to-stable/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/promote-to-stable/action.yml b/.github/actions/promote-to-stable/action.yml index 638391969..e0b519d01 100644 --- a/.github/actions/promote-to-stable/action.yml +++ b/.github/actions/promote-to-stable/action.yml @@ -95,7 +95,7 @@ runs: jf rt download $ARTIFACT --flat done - for ARTIFACT_DL in $(dir -1|grep -E ".+{{ steps.parse-distrib.outputs.package_distrib_name }}.+\.deb"); do + for ARTIFACT_DL in $(dir -1|grep -E ".+${{ steps.parse-distrib.outputs.package_distrib_name }}.+\.deb"); do ARCH=$(echo $ARTIFACT_DL | cut -d '_' -f3 | cut -d '.' -f1) echo "[DEBUG] - Promoting (upload) $ARTIFACT_DL to stable $TARGET_PATH." jf rt upload "$ARTIFACT_DL" "$TARGET_PATH" --deb "${{ inputs.distrib }}/main/$ARCH" From 9acf1f4075de665e46492e4b042c4bac15ba6560 Mon Sep 17 00:00:00 2001 From: pkippes Date: Tue, 15 Oct 2024 11:45:19 +0200 Subject: [PATCH 3/3] Empty-Commit