From 83be5fb151b0c30bad47f173f875b6ce1c20e0bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Mon, 14 Apr 2025 15:08:32 +0200 Subject: [PATCH] Release container is now using the .tar format Update the CI check to account for it. --- .github/workflows/scan_released.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scan_released.yml b/.github/workflows/scan_released.yml index b8d555e..401d2a3 100644 --- a/.github/workflows/scan_released.yml +++ b/.github/workflows/scan_released.yml @@ -20,7 +20,7 @@ jobs: - name: Download container image for the latest release and load it run: | VERSION=$(curl https://api.github.com/repos/freedomofpress/dangerzone/releases/latest | grep "tag_name" | cut -d '"' -f 4) - CONTAINER_FILENAME=container-${VERSION:1}-${{ matrix.arch }}.tar.gz + CONTAINER_FILENAME=container-${VERSION:1}-${{ matrix.arch }}.tar wget https://github.com/freedomofpress/dangerzone/releases/download/${VERSION}/${CONTAINER_FILENAME} -O ${CONTAINER_FILENAME} docker load -i ${CONTAINER_FILENAME} - name: Get image tag