From eef78a7ee3c83b772071185ca6ca3aaeefee5b34 Mon Sep 17 00:00:00 2001 From: Antheas Kapenekakis <5252246+antheas@users.noreply.github.com> Date: Sat, 26 Oct 2024 00:26:43 +0200 Subject: [PATCH] chore: remove compression from rechunk to save time, remove spurious tags (#1779) --- .github/workflows/build.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fb8aea36..49c6d05f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -277,6 +277,7 @@ jobs: ref: 'raw-img' prev-ref: '${{ steps.generate-prev-ref.outputs.ref }}' version: '${{ steps.generate-version.outputs.tag }}' + skip_compression: 1 labels: | io.artifacthub.package.logo-url=https://raw.githubusercontent.com/ublue-os/bazzite/main/repo_content/logo.png io.artifacthub.package.readme-url=https://docs.bazzite.gg @@ -321,9 +322,6 @@ jobs: BUILD_TAGS+=("${FEDORA_VERSION}-unstable") BUILD_TAGS+=("unstable-${FEDORA_VERSION}") # flip ver to be last - # Per upstream ver - BUILD_TAGS+=("unstable-${UPSTREAM_TAG}") - if [ -n "$LATEST" ]; then BUILD_TAGS+=("unstable") fi @@ -332,16 +330,12 @@ jobs: BUILD_TAGS+=("${FEDORA_VERSION}-testing") BUILD_TAGS+=("testing-${FEDORA_VERSION}") # flip ver to be last - # Per upstream ver - BUILD_TAGS+=("testing-${UPSTREAM_TAG}") - if [ -n "$LATEST" ]; then BUILD_TAGS+=("testing") fi else BUILD_TAGS+=("${FEDORA_VERSION}") - BUILD_TAGS+=("${UPSTREAM_TAG}") - BUILD_TAGS+=("stable-${UPSTREAM_TAG}") + BUILD_TAGS+=("stable-${VERSION_TAG}") # Per fedora version BUILD_TAGS+=("${FEDORA_VERSION}-stable")