diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 73d836d..60ecb5a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,6 +59,8 @@ jobs: uses: actions/download-artifact@v2 with: name: jars + - name: Display structure of downloaded files + run: ls -R - name: Upload assets env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/build.sbt b/build.sbt index 926e395..273a95c 100644 --- a/build.sbt +++ b/build.sbt @@ -47,4 +47,4 @@ inScope(Global)(Seq( )) skip in publish := true -publishTo := sonatypePublishToBundle.value +publishTo := sonatypePublishToBundle.value \ No newline at end of file diff --git a/publish.sh b/publish.sh index 62a098f..64c56ac 100644 --- a/publish.sh +++ b/publish.sh @@ -3,7 +3,7 @@ set -e echo "$PGP_SECRET" | base64 --decode | gpg --import if [[ $GITHUB_REF == refs/tags/* ]]; then - command="; publishSigned; sonatypeReleaseAll" + command="; publishSigned; sonatypeOpen; sonatypeReleaseAll" else command="publishSigned" fi