3 Commits

Author SHA1 Message Date
Adrian Kuta
ac5e710f37 Test CI for self-hosted runner
All checks were successful
Publish / Release build and publish (push) Successful in 5m13s
2024-07-30 21:57:11 +02:00
Adrian Kuta
6021efc0cc Test CI for self-hosted runner
Some checks failed
Publish / Release build and publish (push) Has been cancelled
2024-07-30 21:42:54 +02:00
Adrian Kuta
845ce20047 Test CI for self-hosted runner 2024-07-30 21:12:58 +02:00
2 changed files with 11 additions and 1 deletions

View File

@@ -1,6 +1,9 @@
name: Publish name: Publish
on: on:
push:
branches:
- develop
release: release:
# We'll run this workflow when a new GitHub release is created # We'll run this workflow when a new GitHub release is created
types: [released] types: [released]
@@ -17,6 +20,13 @@ jobs:
with: with:
distribution: adopt distribution: adopt
java-version: 17 java-version: 17
- name: Setup Android SDK
uses: android-actions/setup-android@v3
- name: LS Command
run: |
echo $ANDROID_HOME
ls $ANDROID_HOME
# Runs upload, and then closes & releases the repository # Runs upload, and then closes & releases the repository
- name: Publish to MavenCentral - name: Publish to MavenCentral

View File

@@ -27,7 +27,7 @@ To include Unbound Drag & Drop in your project, add the following dependency to
file: file:
```kotlin ```kotlin
implementation("dev.adriankuta:unbound-drag-drop:0.1.0") implementation("dev.adriankuta:unbound-drag-drop:0.0.2")
``` ```
## Usage ## Usage