Skip to content

Commit 3a8bdbd

Browse files
FIx Github build workflow
Signed-off-by: Karsten Schnitter <[email protected]>
1 parent ef4f9ca commit 3a8bdbd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/maven-verify.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
build-main:
12-
if: github.base_ref == 'main'
12+
if: github.event.pull_request.base_ref == 'main'
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4
@@ -21,7 +21,7 @@ jobs:
2121
- name: Build with Maven
2222
run: mvn -B -ntp -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn clean verify
2323
build-release-3:
24-
if: github.base_ref == 'release-3'
24+
if: github.event.pull_request.base_ref == 'release-3'
2525
runs-on: ubuntu-latest
2626
steps:
2727
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)