Skip to content

Update version to 4.2.3 #35

Update version to 4.2.3

Update version to 4.2.3 #35

Workflow file for this run

name: Release test
on:
push:
branches:
- "release/**"
- "hotfix/**"
jobs:
distribution:
if: ${{ github.repository == 'dita-ot/dita-ot' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: Set tag name
run: |
echo "tag=${GITHUB_REF#refs/heads/release/}" >> $GITHUB_ENV
- name: Build distribution package
run: |
./gradlew --no-daemon
./gradlew dist -Pcommit=${GITHUB_SHA} -Ptag=${TAG} --no-daemon
env:
TAG: ${{ env.tag }}