Skip to content

πŸ“ Added section on configuring SSL trust store. #47

πŸ“ Added section on configuring SSL trust store.

πŸ“ Added section on configuring SSL trust store. #47

name: Spring Boot Starter CI
on:
push:
paths:
- 'spring/fluentforms-spring-boot-**'
- '.github/workflows/spring-boot-starter-ci.yml'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21 for Shared Runner
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
cache: 'maven'
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 AutoConfigure with Maven
run: mvn -B install -s $GITHUB_WORKSPACE/settings.xml --file spring/fluentforms-spring-boot-autoconfigure
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Build AutoConfigure with Maven
if: github.ref == 'refs/heads/master' || github.ref == 'refs/tags/*' # Only run on main branch or tags
run: mvn -B deploy -s $GITHUB_WORKSPACE/settings.xml --file spring/fluentforms-spring-boot-autoconfigure
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Publish Starter to GitHub Packages Apache Maven
if: github.ref == 'refs/heads/master' || github.ref == 'refs/tags/*' # Only run on main branch or tags
run: mvn -B deploy -s $GITHUB_WORKSPACE/settings.xml --file spring/fluentforms-spring-boot-starter
env:
GITHUB_TOKEN: ${{ github.token }}