Skip to content

[1.4.0] Maintenance (Spring Boot 3.3.3) (2024-09-03) #1

[1.4.0] Maintenance (Spring Boot 3.3.3) (2024-09-03)

[1.4.0] Maintenance (Spring Boot 3.3.3) (2024-09-03) #1

Workflow file for this run

# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path
name: Publish to cdoc2-capsule-server GitHub Packages Apache Maven (Maven repository)
on:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
settings-path: ${{ github.workspace }} # location for the settings.xml file
- name: Publish to GitHub Packages Apache Maven
run: mvn deploy -s $GITHUB_WORKSPACE/settings.xml
env:
GITHUB_TOKEN: ${{ github.token }}