File tree 1 file changed +8
-3
lines changed
1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,18 @@ jobs:
24
24
- run : echo $PGP_SECRET | base64 --decode | gpg --batch --import
25
25
env :
26
26
PGP_SECRET : ${{ secrets.PGP_SECRET }}
27
- - name : Build, test and release
27
+ - name : Build and test
28
28
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
30
36
env :
31
37
SONATYPE_PASSWORD : ${{ secrets.SONATYPE_PASSWORD }}
32
38
SONATYPE_USERNAME : ${{ secrets.SONATYPE_USERNAME }}
33
-
34
39
- name : Export ENV vars
35
40
run :
36
41
echo "LATEST_TAG=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV
You can’t perform that action at this time.
0 commit comments