File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,18 @@ jobs:
2424 - run : echo $PGP_SECRET | base64 --decode | gpg --batch --import
2525 env :
2626 PGP_SECRET : ${{ secrets.PGP_SECRET }}
27- - name : Build, test and release
27+ - name : Build and test
2828 shell : bash
29- run : sbt -v clean test core/Universal/packageBin ciReleaseTagNextVersion ciReleaseSonatype
29+ run : sbt -v clean test
30+ - name : Package core (will be uploaded to github release)
31+ shell : bash
32+ run : sbt -v core/Universal/packageBin
33+ - name : Deploy to sonatype and release to maven central
34+ shell : bash
35+ run : sbt -v ciReleaseTagNextVersion ciReleaseSonatype
3036 env :
3137 SONATYPE_PASSWORD : ${{ secrets.SONATYPE_PASSWORD }}
3238 SONATYPE_USERNAME : ${{ secrets.SONATYPE_USERNAME }}
33-
3439 - name : Export ENV vars
3540 run :
3641 echo "LATEST_TAG=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV
You can’t perform that action at this time.
0 commit comments