Skip to content

Merge branch 'development' into feature/#680-move-from-the-spreadshee… #5797

Merge branch 'development' into feature/#680-move-from-the-spreadshee…

Merge branch 'development' into feature/#680-move-from-the-spreadshee… #5797

Workflow file for this run

name: Build Maven Package
on:
push:
branches:
- '**'
pull_request:
# The branches below must be a subset of the branches above
branches: [ main, master ]
jobs:
package:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
- name: Load local Maven repository cache
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Run mvn package
run: VAADIN_OFFLINE_KEY=${{ secrets.VAADIN_SERVER_23_2 }} mvn -B package --file pom.xml