Skip to content

0.3.5

0.3.5 #12

Workflow file for this run

name: Gradle publish
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 3
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
cache: 'gradle'
- uses: gradle/actions/setup-gradle@v4
- name: Configure Git
run: git config --global user.email "no-reply@github.com" && git config --global user.name "Github Actions"
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Get commit hash
run: |
COMMIT_HASH=$(git rev-parse --short HEAD)
echo "COMMIT_HASH=$COMMIT_HASH" >> $GITHUB_ENV
- name: Set version
run: |
VERSION=${{ github.event.release.name }}
if [ "${{ github.event.release.prerelease }}" = "true" ]; then
FULL_VERSION="${VERSION}-commit-${COMMIT_HASH}"
else
FULL_VERSION="${VERSION}"
fi
echo "Setting version to $FULL_VERSION"
sed -i "s/^project_version = .*/project_version = $FULL_VERSION/" gradle.properties
echo "FULL_VERSION=$FULL_VERSION" >> $GITHUB_ENV
- name: Build
run: ./gradlew publish --no-daemon --stacktrace
env:
REPOSILITE_TOKEN: ${{secrets.REPOSILITE_TOKEN}}
- name: Rebuild on Failure
if: ${{ failure() }}
run: |
./gradlew clean
./gradlew publish --no-daemon --stacktrace --refresh-dependencies
env:
REPOSILITE_TOKEN: ${{secrets.REPOSILITE_TOKEN}}