File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 23
23
PGP_SECRET : ${{ secrets.PGP_SECRET }}
24
24
SONATYPE_PASSWORD : ${{ secrets.SONATYPE_PASSWORD }}
25
25
SONATYPE_USERNAME : ${{ secrets.SONATYPE_USERNAME }}
26
+
27
+ - name : Create Github release
28
+ id : create_release
29
+ uses : softprops/action-gh-release@v2
30
+ with :
31
+ name : ${{ github.ref_name }}
32
+ draft : false
33
+ prerelease : false
34
+ token : ${{ secrets.GITHUB_TOKEN }}
35
+ files : |
36
+ target/scala-2.12/*.jar
Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ startYear := Some(2024)
14
14
15
15
licenses += " Apache License, Version 2.0" -> url(" http://www.apache.org/licenses/LICENSE-2.0" )
16
16
17
- sonatypeCredentialHost := " s01.oss.sonatype.org"
18
- sonatypeRepository := " https://s01.oss.sonatype.org/service/local"
17
+ import xerial .sbt .Sonatype .sonatypeCentralHost
19
18
19
+ sonatypeCredentialHost := sonatypeCentralHost
20
20
21
21
inThisBuild(List (
22
22
semanticdbEnabled := true , // enable SemanticDB
You can’t perform that action at this time.
0 commit comments