This is an automated email from the ASF dual-hosted git repository.

engelen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko-connectors.git


The following commit(s) were added to refs/heads/main by this push:
     new 8a5c7d467 change nightly job to run doc publish as an independent 
subjob (#1450)
8a5c7d467 is described below

commit 8a5c7d467e94e9fd5ec57564f140ab1db7d748c8
Author: PJ Fanning <[email protected]>
AuthorDate: Tue Feb 24 13:50:05 2026 +0100

    change nightly job to run doc publish as an independent subjob (#1450)
---
 .github/workflows/publish-nightly.yml | 29 ++++++++++++++++++++++++++---
 1 file changed, 26 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/publish-nightly.yml 
b/.github/workflows/publish-nightly.yml
index 664afde50..72934995e 100644
--- a/.github/workflows/publish-nightly.yml
+++ b/.github/workflows/publish-nightly.yml
@@ -20,13 +20,13 @@ name: Publish Nightly
 on:
   workflow_dispatch:
   schedule:
-    - cron: "22 0 * * *"
+    - cron: "0 22 * * *"
 
 jobs:
-  publish:
+  publish-jars:
     # runs on main repo only
     if: github.repository == 'apache/pekko-connectors'
-    name: Publish
+    name: Publish Jars
     runs-on: ubuntu-22.04
     env:
       JAVA_OPTS: -Xms2G -Xmx3G -Xss2M -XX:ReservedCodeCacheSize=256M 
-Dfile.encoding=UTF-8
@@ -52,6 +52,29 @@ jobs:
           NEXUS_PW: ${{ secrets.NEXUS_PW }}
         run: sbt +publish
 
+  publish-docs:
+    # runs on main repo only
+    if: github.repository == 'apache/pekko-connectors'
+    name: Publish Documentation
+    runs-on: ubuntu-22.04
+    env:
+      JAVA_OPTS: -Xms2G -Xmx3G -Xss2M -XX:ReservedCodeCacheSize=256M 
-Dfile.encoding=UTF-8
+    steps:
+      - name: Checkout
+        uses: actions/checkout@v6
+        with:
+          fetch-tags: true
+          fetch-depth: 0
+
+      - name: Setup Java 17
+        uses: actions/setup-java@v5
+        with:
+          distribution: temurin
+          java-version: 17
+
+      - name: Install sbt
+        uses: sbt/setup-sbt@1cad58d595b729a71ca2254cdf5b43dd6f42d4bb # v1.1.18
+
       - name: Build Documentation
         run: |-
           sbt docs/paradox unidoc


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to