From d3b59d4a6cd6af69e2ed4efa11dad89c8d8e1352 Mon Sep 17 00:00:00 2001 From: Pierre Jacquier Date: Mon, 20 Nov 2023 10:05:53 +0100 Subject: [PATCH] Test BUILD_RELEASE true --- .github/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ada5ec14a..f317c9c25 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,11 +13,12 @@ on: # Will checkout the last commit from the default branch (main as of 2023-10-04) env: - BUILD_RELEASE: ${{ github.event_name == 'release' || github.event_name == 'schedule' || github.event_name == 'pull_request' && contains(github.event.pull_request.title, 'Cut release v') }} + BUILD_RELEASE: true + # BUILD_RELEASE: ${{ github.event_name == 'release' || github.event_name == 'schedule' || github.event_name == 'pull_request' && contains(github.event.pull_request.title, 'Cut release v') }} -concurrency: - group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} - cancel-in-progress: true +# concurrency: +# group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} +# cancel-in-progress: true jobs: check-format: