Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Maven central workflow

on:
push:
pull_request:
workflow_dispatch:

jobs:
maven:
uses: folio-org/.github/.github/workflows/maven.yml@v1
# Only handle push events from the main branch or tags, to decrease PR noise
if: github.ref_name == github.event.repository.default_branch || github.event_name != 'push' || github.ref_type == 'tag'
secrets: inherit
with:
java-version: '21'
publish-module-descriptor: true
allow-snapshots-release: false
do-sonar-scan: true
do-docker: true
File renamed without changes.
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
* Improve Docker Compose setup for local development ([MODQM-481](https://folio-org.atlassian.net/browse/MODQM-481))
* Restructure documentation in `README.md` ([MODQM-470](https://folio-org.atlassian.net/browse/MODQM-470))
* Refactor code to comply with Checkstyle method length limit (max 25 lines) ([MODQM-488](https://folio-org.atlassian.net/browse/MODQM-488))
* Use GitHub workflow for CI/CD ([MODQM-499](https://folio-org.atlassian.net/browse/MODQM-499))
* Add "apt upgrade" to Dockerfile, add .dockerignore

### Dependencies
Expand Down
Loading