This is an automated email from the ASF dual-hosted git repository.
fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko-management.git
The following commit(s) were added to refs/heads/main by this push:
new ae222355 Create publish-nightly-1.3.yml (#731)
ae222355 is described below
commit ae222355d8101069d68914a9f72f148056869179
Author: PJ Fanning <[email protected]>
AuthorDate: Sat Mar 28 10:52:21 2026 +0100
Create publish-nightly-1.3.yml (#731)
---
.github/workflows/publish-nightly-1.3.yml | 46 +++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
diff --git a/.github/workflows/publish-nightly-1.3.yml
b/.github/workflows/publish-nightly-1.3.yml
new file mode 100644
index 00000000..ca70742c
--- /dev/null
+++ b/.github/workflows/publish-nightly-1.3.yml
@@ -0,0 +1,46 @@
+name: Publish
+
+on:
+ workflow_dispatch:
+ schedule:
+ - cron: "0 22 * * *"
+
+jobs:
+ publish-artifacts:
+ name: Publish artifacts to Apache Nexus
+ runs-on: ubuntu-22.04
+ if: github.repository == 'apache/pekko-management'
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v6
+ with:
+ fetch-depth: 0
+ ref: 1.3.x
+
+ - name: Enable jvm-opts
+ run: cp .jvmopts-ci .jvmopts
+
+ - name: Set up JDK 8
+ uses: actions/setup-java@v5
+ with:
+ distribution: temurin
+ java-version: 8
+
+ - name: Install sbt
+ uses: sbt/setup-sbt@dd1ef7d7798fab5ce802a6adab3b782817b8c2d0 # v1.1.20
+
+ - name: Cache Coursier cache
+ uses: coursier/cache-action@90c37294538be80a558fd665531fcdc2b467b475 #
v8.1.0
+
+ - name: Install graphviz
+ run: sudo apt-get install -y graphviz
+
+ - name: Publish to Apache Maven repo
+ run: sbt +publish
+ env:
+ NEXUS_USER: ${{ secrets.NEXUS_USER }}
+ NEXUS_PW: ${{ secrets.NEXUS_PW }}
+
+ - name: Build Documentation
+ run: |-
+ sbt docs/paradox unidoc
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]