From 82161ce94cdc9760592ef20019cde13d1c5f8b75 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Fri, 9 Jan 2026 09:14:01 +0100 Subject: [PATCH 1/2] ci: increase timeout limit for build --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d461fd82..78cc6195 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,7 +27,7 @@ jobs: OS: linux runs-on: ubuntu-22.04 - timeout-minutes: 15 + timeout-minutes: 20 steps: - uses: actions/checkout@v6 @@ -69,7 +69,7 @@ jobs: OS: linux runs-on: ubuntu-22.04-arm - timeout-minutes: 15 + timeout-minutes: 20 steps: - uses: actions/checkout@v4 @@ -113,7 +113,7 @@ jobs: # macos-14 runs on arm CPU. see # https://github.com/actions/runner-images?tab=readme-ov-file runs-on: macos-14 - timeout-minutes: 15 + timeout-minutes: 20 steps: - uses: actions/checkout@v4 @@ -155,7 +155,7 @@ jobs: OS: macos runs-on: macos-14-large - timeout-minutes: 15 + timeout-minutes: 20 steps: - uses: actions/checkout@v4 From 5c0169ee05e596cbfef2675ea483b4b5989dbf0f Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Fri, 9 Jan 2026 11:44:38 +0100 Subject: [PATCH 2/2] ci: force release to be the latest --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 78cc6195..8edd1fc5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -62,6 +62,7 @@ jobs: allowUpdates: true artifacts: lightpanda-${{ env.ARCH }}-${{ env.OS }} tag: ${{ env.RELEASE }} + makeLatest: true build-linux-aarch64: env: @@ -104,6 +105,7 @@ jobs: allowUpdates: true artifacts: lightpanda-${{ env.ARCH }}-${{ env.OS }} tag: ${{ env.RELEASE }} + makeLatest: true build-macos-aarch64: env: @@ -148,6 +150,7 @@ jobs: allowUpdates: true artifacts: lightpanda-${{ env.ARCH }}-${{ env.OS }} tag: ${{ env.RELEASE }} + makeLatest: true build-macos-x86_64: env: @@ -190,3 +193,4 @@ jobs: allowUpdates: true artifacts: lightpanda-${{ env.ARCH }}-${{ env.OS }} tag: ${{ env.RELEASE }} + makeLatest: true