From 1354e367b78402c01cd291f7292556b5b59da5e9 Mon Sep 17 00:00:00 2001 From: Benedek Farkas Date: Fri, 8 Mar 2024 10:49:36 +0100 Subject: [PATCH] Testing the branch strategy matrix concept to be used for the nightly build --- .github/workflows/compile.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index c63e0d2ec..50eeee469 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -15,10 +15,15 @@ jobs: run: shell: pwsh runs-on: windows-latest + strategy: + matrix: + branch: [dev, 1.10.x] steps: - name: Clone repository uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + with: + ref: ${{ matrix.branch }} - name: Restore NuGet packages run: nuget restore src/Orchard.sln