From 39ad4af1e7778b51a12c98797fb4acce228068ad Mon Sep 17 00:00:00 2001 From: aptalca <541623+aptalca@users.noreply.github.com> Date: Thu, 3 Sep 2026 15:12:23 -0400 Subject: [PATCH] update artifact name for v4 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5d80648..f969ffd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,9 +33,9 @@ RUN \ | jq -r '.tag_name' | sed 's|^Audacity-||'); \ fi && \ cd /tmp && \ - curl -o \ + curl -fo \ /tmp/audacity.app -L \ - "https://github.com/audacity/audacity/releases/download/Audacity-${AUDACITY_VERSION}/audacity-linux-${AUDACITY_VERSION}-x64-22.04.AppImage" && \ + "https://github.com/audacity/audacity/releases/download/Audacity-${AUDACITY_VERSION}/audacity-linux-${AUDACITY_VERSION}-x86_64.AppImage" && \ chmod +x /tmp/audacity.app && \ ./audacity.app --appimage-extract && \ mv squashfs-root /opt/audacity && \