Skip to content

Bump navigation from 2.8.2 to 2.8.3 #219

Bump navigation from 2.8.2 to 2.8.3

Bump navigation from 2.8.2 to 2.8.3 #219

Workflow file for this run

name: Build
on:
push:
branches:
- main # updates the cache
tags:
- '*'
paths-ignore: # do not trigger for changes:
- README.md
- LICENSE
- CHANGELOG.md
- docs/**
pull_request:
branches: [ main ]
paths-ignore: # do not trigger for changes:
- README.md
- LICENSE
- CHANGELOG.md
- docs/**
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Required for GitVersion
- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v3.0.0
with:
versionSpec: '6.x'
- name: Determine Version
id: gitversion
uses: gittools/actions/gitversion/execute@v3.0.0
with:
useConfigFile: true
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build and test
if: ${{ startsWith(github.ref, 'refs/pull') }}
run: ./gradlew build test --stacktrace
- name: Publish to maven central
if: ${{ startsWith(github.ref, 'refs/tags') }}
run: ./gradlew publish --max-workers 1 closeAndReleaseStagingRepository --stacktrace
env:
PUBLISHING_PROFILE_ID: ${{ secrets.PUBLISHING_PROFILE_ID }}
PUBLISHING_USERNAME: ${{ secrets.PUBLISHING_USERNAME }}
PUBLISHING_PASSWORD: ${{ secrets.PUBLISHING_PASSWORD }}
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }}
VERSION_NAME: ${{ steps.gitversion.outputs.semVer }}