Skip to content

Commit baf06ee

Browse files
NFC-82 Github temporary build fix
Signed-off-by: Sander Kondratjev <[email protected]>
1 parent 1bd3876 commit baf06ee

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/maven-build-example.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
steps:
22+
# TODO: revert later — currently forcing branch checkout for GitHub build
2223
- name: Checkout current branch
2324
uses: actions/checkout@v4
2425
with:
25-
ref: ${{ github.head_ref || github.ref }} // TODO revert, currently for github build
26+
ref: ${{ github.head_ref || github.ref }}
2627

2728
- uses: actions/setup-java@v4
2829
with:

.github/workflows/maven-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,11 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18+
# TODO: revert later — currently forcing branch checkout for GitHub build
1819
- name: Checkout current branch
1920
uses: actions/checkout@v4
2021
with:
21-
ref: ${{ github.head_ref || github.ref }} // TODO revert, currently for github build
22+
ref: ${{ github.head_ref || github.ref }}
2223

2324
- uses: actions/setup-java@v4
2425
with:

0 commit comments

Comments
 (0)