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
29 changes: 13 additions & 16 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
name: Maven Build
name: Maven central workflow

on:
push:
pull_request:
workflow_dispatch:

permissions:
contents: read

jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, ubuntu-24.04-arm]
continue-on-error: true
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- run: mvn -B install | tee out
- run: tail -1000 out
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
File renamed without changes.
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@
- Add import from URL API [MODLD-1019](https://folio-org.atlassian.net/browse/MODLD-1019)
- Use system user context for processing kafka messages [MODLD-1026](https://folio-org.atlassian.net/browse/MODLD-1026)
- Update dimensions property URI [MODLD-1024](https://folio-org.atlassian.net/browse/MODLD-1024)
- Use GitHub Workflows for Maven [MODLD-971](https://folio-org.atlassian.net/browse/MODLD-971)

## 1.0.4 (04-24-2025)
- Work Edit form - Instance read-only section: "Notes about the instance" data is not shown [MODLD-716](https://folio-org.atlassian.net/browse/MODLD-716)
Expand Down
Loading