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 c9c5c43 commit 89dccafCopy full SHA for 89dccaf
.github/workflows/release.yaml
@@ -0,0 +1,28 @@
1
+name: Publish Package to GitHub Packages
2
+on:
3
+ push:
4
+ tags:
5
+ - "*"
6
+
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ permissions:
11
+ contents: read
12
+ packages: write
13
14
+ steps:
15
+ - name: Checkout code with Git
16
+ uses: actions/checkout@v4
17
+ with:
18
+ fetch-depth: 0
19
20
+ - name: Set up Kotlin
21
+ uses: actions/setup-java@v4
22
23
+ distribution: 'jetbrains'
24
+ java-version: 22
25
+ cache: gradle
26
27
+ - name: Build and Publish Artifact
28
+ run: ./gradlew clean publish
0 commit comments