Skip to content

Publish nightly 1.3 snapshots #190

Publish nightly 1.3 snapshots

Publish nightly 1.3 snapshots #190

# Licensed to the Apache Software Foundation (ASF) under one or more
# license agreements; and to You under the Apache License, version 2.0:
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# This file is part of the Apache Pekko project, which was derived from Akka.
#
name: Publish nightly 1.3 snapshots
on:
schedule:
- cron: "30 1 * * *"
workflow_dispatch:
jobs:
publish-artifacts:
name: Publish 1.3 artifacts to Apache Nexus
runs-on: ubuntu-latest
if: github.repository == 'apache/pekko-http'
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
fetch-tags: true
ref: 1.3.x
- name: Set up JDK 8
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
distribution: temurin
java-version: 8
- name: Install sbt
uses: sbt/setup-sbt@6bec67c98f542b9e17369bfca0ec822ac1363194 # v1.1.19
- name: Cache Coursier cache
uses: coursier/cache-action@e47d7d35a0d3a2c7f649ca5c63dfc2bbfaa002e7 # v8.0.1
- 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 }}
JAVA_OPTS: "-verbose:gc -Xmx4g"