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 502275d commit 217f004Copy full SHA for 217f004
plugin/build.gradle
@@ -13,8 +13,6 @@ android {
13
compileSdk 35
14
minSdk 21
15
targetSdk 35
16
- versionCode 1
17
- versionName "0.1"
18
}
19
20
compileOptions {
@@ -41,7 +39,7 @@ publishing {
41
39
release(MavenPublication) {
42
40
groupId = "com.tiefensuche.soundcrowd"
43
artifactId = "plugin"
44
- version = "0.1"
+ version = "1.0.0"
45
46
afterEvaluate {
47
from(components["release"])
@@ -53,8 +51,8 @@ publishing {
53
51
maven {
54
52
url = uri("https://maven.pkg.github.com/soundcrowd/soundcrowd-plugin")
55
credentials {
56
- username = System.getenv("USERNAME")
57
- password = System.getenv("TOKEN")
+ username = System.getenv("GITHUB_ACTOR")
+ password = System.getenv("GITHUB_TOKEN")
58
59
60
0 commit comments