Skip to content

test: Comment not implemented tests #2

test: Comment not implemented tests

test: Comment not implemented tests #2

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a package using Gradle 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#Publishing-using-gradle
name: Release
on:
push:
branches:
- main
- rc
- beta
- alpha
- "*.x"
jobs:
get-next-version:
uses: lenra-io/github-actions/.github/workflows/get-version.yml@main
release:
needs: [get-next-version]
if: ${{ needs.get-next-version.outputs.will-release == 'true' }}
uses: lenra-io/github-actions/.github/workflows/release.yml@main
publish:
name: publish
needs: [get-next-version]
if: ${{ needs.get-next-version.outputs.will-release == 'true' }}
runs-on: ubuntu-latest
env:
VERSION: ${{ needs.get-next-version.outputs.version }}
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'
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: Setup Gradle
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0
- run: sed -E "s/^(version\s*=\s*)(.+)\$/\1${{ env.VERSION }}/" -i gradle.properties
- name: Build with Gradle
run: ./gradlew build
- name: Publish to GitHub Packages
run: ./gradlew publish
env:
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}