build(deps): bump org.jetbrains.kotlin.kapt from 2.0.21 to 2.1.0 (#251) #345
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: Build | |
on: | |
push: | |
branches: | |
- '*' | |
paths-ignore: | |
- '**.md' | |
- '.github/**' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build Pipeline | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup timezone | |
run: | | |
sudo timedatectl set-timezone Europe/Zurich | |
timedatectl | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Set up Java JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '19' | |
java-package: jdk | |
architecture: x64 | |
cache: 'gradle' | |
check-latest: false | |
- name: Change wrapper permissions | |
run: chmod +x ./gradlew | |
- name: Validate Gradle Wrapper | |
uses: gradle/actions/wrapper-validation@v4 | |
- name: Build with Gradle | |
run: ./gradlew build --warn --full-stacktrace | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-libs | |
path: build/libs | |
retention-days: 3 |