Skip to content

Merge branch 'develop' of git@gitea.intranda.com:goobi-viewer/goobi-v… #6

Merge branch 'develop' of git@gitea.intranda.com:goobi-viewer/goobi-v…

Merge branch 'develop' of git@gitea.intranda.com:goobi-viewer/goobi-v… #6

Workflow file for this run

name: Build develop branch
on:
push:
branches:
- develop
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Set up Java 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Set up Maven cache
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Compile Goobi viewer Indexer
run: mvn -f goobi-viewer-indexer/pom.xml clean package -U -B