Release Daily Development Snapshot #41
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Daily Development Snapshot | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
getversion: | |
runs-on: ubuntu-latest | |
outputs: | |
milestone: "${{ steps.maven-version.outputs.milestone }}" | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
ref: develop | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
- name: Get Maven Project Version | |
id: maven-version | |
run: | | |
VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout) | |
echo "Maven version: $VERSION" | |
echo "milestone=$VERSION" >> $GITHUB_OUTPUT | |
call-release: | |
needs: getversion | |
uses: ./.github/workflows/release.yml | |
secrets: inherit | |
with: | |
branch: 'develop' | |
milestone: ${{needs.getversion.outputs.milestone}} |