Update examples for Helidon 4.1.5 release #71
Workflow file for this run
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
# Notes | |
# - cannot run on Windows, as we use shell scripts | |
name: "Release" | |
on: | |
push: | |
branches: | |
- 'release-*' | |
env: | |
JAVA_VERSION: '21' | |
JAVA_DISTRO: 'oracle' | |
HELIDON_PIPELINES: 'true' | |
MAVEN_HTTP_ARGS: '-Dmaven.wagon.httpconnectionManager.ttlSeconds=60 -Dmaven.wagon.http.retryHandler.count=3' | |
concurrency: | |
group: release-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
call-validate-workflow: | |
uses: ./.github/workflows/validate.yml | |
release: | |
needs: call-validate-workflow | |
timeout-minutes: 30 | |
runs-on: ubuntu-20.04 | |
environment: release | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.SERVICE_ACCOUNT_TOKEN }} | |
fetch-depth: '0' | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4.1.0 | |
with: | |
distribution: ${{ env.JAVA_DISTRO }} | |
java-version: ${{ env.JAVA_VERSION }} | |
cache: maven | |
- name: Release | |
run: | | |
git config user.email "helidon-robot_ww@oracle.com" | |
git config user.name "Helidon Robot" | |
etc/scripts/release.sh release_build |