build(deps): bump org.jetbrains.kotlin.jvm from 1.7.20 to 1.9.23 #101
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
name: CI | |
on: [ push ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '8', '11' ] | |
permissions: | |
checks: write | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up build environment | |
run: | | |
chmod +x ./scripts/*.sh | |
# Disable gradle daemon | |
mkdir -p ~/.gradle | |
echo "org.gradle.daemon=false" >> ~/.gradle/gradle.properties | |
- name: Determine effective branch | |
id: git-meta | |
run: | | |
EFFECTIVE_BRANCH_NAME="$( ./scripts/get-effective-branch.sh )" | |
echo "::set-output name=branch::${EFFECTIVE_BRANCH_NAME}" | |
- name: Test | |
run: ./gradlew test --info --stacktrace | |
- name: Publish Unit Test Results | |
if: always() | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
with: | |
files: "**/test-results/**/*.xml" | |
comment_mode: off | |
- name: Build distribution | |
run: ./gradlew clean installdist --stacktrace | |
- name: Build and push Docker image | |
if: ${{ (startsWith(github.ref, 'refs/tags/') || steps.git-meta.outputs.branch == 'develop') && matrix.java == '8' }} | |
run: | | |
EFFECTIVE_BRANCH="${{ steps.git-meta.outputs.branch }}" | |
case "${EFFECTIVE_BRANCH}" in | |
main) | |
./scripts/docker-build.sh latest | |
CURRENT_VERSION="$( git describe --tags --exact-match )" | |
if [[ "${CURRENT_VERSION:0:1}" == "v" ]]; then | |
CURRENT_VERSION="$( echo ${CURRENT_VERSION} | cut -c 2- )" | |
./scripts/docker-build.sh "${CURRENT_VERSION}" | |
fi | |
;; | |
develop) | |
./scripts/docker-build.sh beta | |
;; | |
*) | |
echo "Publish not required for branch: ${EFFECTIVE_BRANCH}" | |
;; | |
esac | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Create release | |
if: ${{ startsWith(github.ref, 'refs/tags/') && matrix.java == '8' }} | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const script = require('./.github/github-release.js') | |
await script({github, context}) |