File tree Expand file tree Collapse file tree 4 files changed +4
-8
lines changed
src.kotlin/alphaTab/android Expand file tree Collapse file tree 4 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 3333 node-version : ' lts/*'
3434 cache : ' npm'
3535
36- - run : npm install
3736 - run : node ./scripts/update-version.js alpha ${{github.run_number}}
37+ - run : npm install
3838 - run : npm run build
3939 - run : npm pack
4040
Original file line number Diff line number Diff line change 1818 "license" : " MPL-2.0" ,
1919 "repository" : {
2020 "type" : " git" ,
21- "url" : " https://github.com/coderline/alphaTab"
21+ "url" : " git+ https://github.com/coderline/alphaTab.git "
2222 },
2323 "main" : " dist/alphaTab.js" ,
2424 "module" : " dist/alphaTab.mjs" ,
Original file line number Diff line number Diff line change @@ -18,5 +18,5 @@ console.log(`Updating Version to ${version}`);
1818const buildFile = `${ __dirname } /../src.kotlin/alphaTab/android/build.gradle.kts` ;
1919
2020let propsSource = fs . readFileSync ( buildFile , 'utf-8' ) ;
21- propsSource = propsSource . replace ( / l i b V e r s i o n \s * = .* / g, `libVersion = "${ version } "` ) ;
21+ propsSource = propsSource . replace ( / l i b V e r s i o n \s * = \" .* / g, `libVersion = "${ version } "` ) ;
2222fs . writeFileSync ( buildFile , propsSource ) ;
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ group = "net.alphatab"
6161version = libVersion
6262
6363val javaVersion = JavaVersion .VERSION_17 ;
64- val jvmTarget = 17
64+ var jvmTarget = 17
6565android {
6666 namespace = project.group.toString()
6767 compileSdk = 34
@@ -132,11 +132,7 @@ dependencies {
132132var sonatypeSigningKeyId = " "
133133var sonatypeSigningPassword = " "
134134var sonatypeSigningKey = " "
135- var ossrhUsername = " "
136- var ossrhPassword = " "
137135var sonatypeStagingProfileId = " "
138- loadSetting(" OSSRH_USERNAME" , " ossrhUsername" ) { ossrhUsername = it }
139- loadSetting(" OSSRH_PASSWORD" , " ossrhPassword" ) { ossrhPassword = it }
140136loadSetting(" SONATYPE_STAGING_PROFILE_ID" , " sonatypeStagingProfileId" ) {
141137 sonatypeStagingProfileId = it
142138}
You can’t perform that action at this time.
0 commit comments