From 3484858d8ce9994d099a31eb7c2fa02d0599afb3 Mon Sep 17 00:00:00 2001 From: Marcel Taeumel Date: Tue, 21 Nov 2023 10:14:21 +0100 Subject: [PATCH 1/2] Fix timestamp issue in monthly arm builds --- .github/workflows/extra-arm.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/extra-arm.yml b/.github/workflows/extra-arm.yml index cc9ba915ce..838c7d544b 100644 --- a/.github/workflows/extra-arm.yml +++ b/.github/workflows/extra-arm.yml @@ -67,6 +67,7 @@ jobs: install: | apt update -y apt install -yq --no-install-suggests --no-install-recommends build-essential git devscripts uuid-dev libcairo2-dev libpango1.0-dev libgl1-mesa-dev libgl1-mesa-glx libssl-dev libevdev-dev m4 libpulse-dev libasound2-dev libfreetype6-dev libx11-dev libxrender-dev libxrandr-dev libtool automake autoconf libltdl-dev + git config --global --add safe.directory ${{ github.workspace }} env: | # Copy the entire environment for the docker container ARCH: ${{ env.ARCH }} From 5788e4222687e3e5d36183a5995fbacd78390583 Mon Sep 17 00:00:00 2001 From: Marcel Taeumel Date: Tue, 21 Nov 2023 10:36:27 +0100 Subject: [PATCH 2/2] Fixes deploy issue for extra arm builds --- .github/workflows/extra-arm.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/extra-arm.yml b/.github/workflows/extra-arm.yml index 838c7d544b..e2d9f395c3 100644 --- a/.github/workflows/extra-arm.yml +++ b/.github/workflows/extra-arm.yml @@ -102,7 +102,7 @@ jobs: - name: Update artifact in latest-release uses: ncipollo/release-action@v1 - if: github.event_name == 'schedule' || (github.event_name == 'push' && endsWith( github.ref , 'Cog' )) + if: github.event_name == 'schedule' || (github.event.inputs.should-deploy == 'true' && endsWith( github.ref , 'Cog' )) with: prerelease: true allowUpdates: true