Skip to content

Commit ba81b6a

Browse files
authored
build: use GitHub Workflows (#885)
Closes: MSEARCH-1158
1 parent cd97314 commit ba81b6a

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

.github/workflows/maven.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Maven central workflow
2+
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
8+
jobs:
9+
maven:
10+
uses: folio-org/.github/.github/workflows/maven.yml@v1.12
11+
# Only handle push events from the main branch or tags, to decrease PR noise
12+
if: github.ref_name == github.event.repository.default_branch || github.event_name != 'push' || github.ref_type == 'tag'
13+
secrets: inherit
14+
with:
15+
java-version: '21'
16+
publish-module-descriptor: true
17+
allow-snapshots-release: false
18+
do-sonar-scan: true
19+
do-docker: true
File renamed without changes.

NEWS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@
8181
* Improve Docker Compose setup for local development ([MSEARCH-1090](https://folio-org.atlassian.net/browse/MSEARCH-1090))
8282
* Change spring-kafka-test scope from compile to test ([MSEARCH-1148](https://folio-org.atlassian.net/browse/MSEARCH-1148))
8383
* Fix race condition in shouldIndexInstanceCallNumber\_createNewDocument\_onItemCreate ([MSEARCH-1149](https://folio-org.atlassian.net/browse/MSEARCH-1149))
84+
* Use GitHub Workflows for builds ([MSEARCH-1158](https://folio-org.atlassian.net/browse/MSEARCH-1158))
8485

8586
### Dependencies
8687
* Bump `LIB_NAME` from `OLD_VERSION` to `NEW_VERSION`

0 commit comments

Comments
 (0)