From 776d150827142ba2c9dce3dd566845ba7b5d094c Mon Sep 17 00:00:00 2001 From: Mahmoud Ben Hassine Date: Wed, 22 Nov 2023 00:21:29 +0100 Subject: [PATCH] Fix continuous integration workflow --- .github/workflows/continuous-integration.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 08e9d4356..42a87f6e8 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -1,16 +1,18 @@ -name: CI/CD build +name: CI/CD build for 5.0.x on: push: - branches: [ "main" ] + branches: [ "5.0.x" ] jobs: build: - name: Build Main branch + name: Build 5.0.x branch runs-on: ubuntu-latest steps: - name: Checkout source code uses: actions/checkout@v3 + with: + ref: '5.0.x' - name: Set up JDK 17 uses: actions/setup-java@v3