Skip to content

try without version

try without version #7

Workflow file for this run

name: Maven Package
on:
push:
branches:
- '*'
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
strategy:
matrix:
profile: [lin64, win64, mac64]
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21 🛎️
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
- name: Build with Maven 🔧
run: mvn --batch-mode package -P ${{ matrix.profile }}
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: target/dist
token: ${{ secrets.GITHUB_TOKEN }}
CLEAN: false