From 1c47a757f216e9536ca2b05b62fcd751301eccd0 Mon Sep 17 00:00:00 2001 From: Alessandro Autiero Date: Tue, 1 Oct 2024 12:21:40 +0200 Subject: [PATCH] Update aboveS20.yml --- .github/workflows/aboveS20.yml | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/.github/workflows/aboveS20.yml b/.github/workflows/aboveS20.yml index eb6a553..2cba61a 100644 --- a/.github/workflows/aboveS20.yml +++ b/.github/workflows/aboveS20.yml @@ -34,12 +34,22 @@ jobs: git commit -m "Add #define ABOVE_S20 to inc.h in aboveS20 branch" git push origin aboveS20 - - name: Builds the master branch + - name: Checkout master branch + uses: actions/checkout@v3 + with: + ref: master + + - name: Build the master branch uses: ./.github/workflows/msbuild.yml with: - branch: "master" + branch: master - - name: Builds the aboveS20 branch + - name: Checkout aboveS20 branch + uses: actions/checkout@v3 + with: + ref: aboveS20 + + - name: Build the aboveS20 branch uses: ./.github/workflows/msbuild.yml with: - branch: "aboveS20" + branch: aboveS20