diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f04d329..6adfd11 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -195,7 +195,7 @@ jobs: continue-on-error: false needs: - ci - if: ${{ github.event_name != 'pull_request' }} + if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }} steps: - name: Git Checkout uses: actions/checkout@v6 @@ -257,7 +257,7 @@ jobs: continue-on-error: false needs: - release-docs - if: ${{ (github.event_name == 'release') && (github.event.action == 'published') }} + if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }} steps: - name: Git Checkout uses: actions/checkout@v6 diff --git a/project/plugins.sbt b/project/plugins.sbt index e47de2e..ce725b2 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -val zioSbtVersion = "0.5.0" +val zioSbtVersion = "0.5.3" val scalaNativeVersion = "0.5.11" addSbtPlugin(("dev.zio" % "zio-sbt-ecosystem" % zioSbtVersion).exclude("org.scala-native", "sbt-scala-native"))