We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8832595 commit 496c941Copy full SHA for 496c941
2 files changed
.github/workflows/build.yml
@@ -23,6 +23,14 @@ jobs:
23
with:
24
distribution: temurin
25
java-version: 21
26
+ cache: gradle
27
+
28
+ - name: Cache Kotlin/Native toolchain
29
+ uses: actions/cache@v4
30
+ with:
31
+ path: ~/.konan
32
+ key: ${{ runner.os }}-konan-${{ hashFiles('**/*.gradle.kts') }}
33
+ restore-keys: ${{ runner.os }}-konan-
34
35
- name: Grant execute permission for Gradle
36
run: chmod +x gradlew
.github/workflows/release.yml
@@ -21,6 +21,13 @@ jobs:
21
java-version: '21'
22
cache: gradle
- name: Extract Version
run: echo "RELEASE_VERSION=${GITHUB_REF_NAME#v}" >> $GITHUB_ENV
0 commit comments