Skip to content

Add settings action #125

Add settings action

Add settings action #125

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
strategy:
matrix:
os: [ macos-latest, ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'oracle'
cache: 'maven'
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_CENTRAL_TOKEN
- name: Maven settings
if: github.ref == 'refs/heads/main' && runner.os == 'Linux'
uses: s4u/[email protected]
with:
servers: |
[{
"id": "ossrh",
"username": "${{ secrets.TOKEN_USER }}",
"password": "${{ secrets.TOKEN_KEY }}"
}]
- name: Build project (macOS)
if: runner.os == 'macOS'
run: |
./mvnw -B -ntp verify -f rta
- name: Build project (Windows)
if: runner.os == 'Windows'
run: |
.\mvnw -B -ntp verify -f rta
- name: Build project (Linux)
if: runner.os == 'Linux'
run: |
export DISPLAY=:90
Xvfb -ac :90 -screen 0 1280x1024x24 > /dev/null 2>&1 &
./mvnw -B -ntp verify -f rta
- name: Publish Snapshots
if: github.ref == 'refs/heads/main' && runner.os == 'Linux'
run: |
ver=$(./mvnw help:evaluate -Dexpression=project.version -q -DforceStdout -f rta)
if [[ $ver == *"SNAPSHOT"* ]]; then
./mvnw -B -ntp -Dmaven.test.skip=true deploy -f rta
fi
shell: bash