This is an automated email from the ASF dual-hosted git repository. sblackmon pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/streams.git
The following commit(s) were added to refs/heads/master by this push: new 51bb3d7b81 chore: publish maven snapshots (#556) 51bb3d7b81 is described below commit 51bb3d7b81a9bd495a2a510939e8e255747d5758 Author: Steve Blackmon <sblack...@apache.org> AuthorDate: Fri Feb 9 14:39:19 2024 -0600 chore: publish maven snapshots (#556) fixes #556 Signed-off-by: Steve Blackmon <sblack...@apache.org> --- .../{streams-ci-workflow.yml => build.yml} | 6 +-- .github/workflows/publish-snapshot.yml | 59 ++++++++++++++++++++++ 2 files changed, 62 insertions(+), 3 deletions(-) diff --git a/.github/workflows/streams-ci-workflow.yml b/.github/workflows/build.yml similarity index 95% rename from .github/workflows/streams-ci-workflow.yml rename to .github/workflows/build.yml index 4387afb4fc..44ee10345e 100644 --- a/.github/workflows/streams-ci-workflow.yml +++ b/.github/workflows/build.yml @@ -16,13 +16,13 @@ # under the License. # -name: build +name: "build" on: push: - branches: ['master', 'STREAMS-*'] + branches: ['master', '*'] pull_request: - branches: ['master', 'STREAMS-*'] + branches: ['master', '*'] schedule: # Run daily at 3pm UTC - cron: '0 15 * * *' diff --git a/.github/workflows/publish-snapshot.yml b/.github/workflows/publish-snapshot.yml new file mode 100644 index 0000000000..10548a924c --- /dev/null +++ b/.github/workflows/publish-snapshot.yml @@ -0,0 +1,59 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. + +name: "publish-snapshot" +on: + workflow_run: + workflows: + - build + types: + - completed + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +defaults: + run: + working-directory: . + +jobs: + publish-snapshot: + runs-on: ubuntu-latest + steps: + - name: "Checkout apache/streams.git" + uses: actions/checkout@v4 + - name: "Set up Java 17" + uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: 17 + - name: "Restore ~/.m2/repository" + uses: actions/cache@v4 + with: + path: | + ~/.m2/repository/ + !~/.m2/repository/org/apache/streams/activitypub + key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}-${{ hashFiles('.github/workflows/*.yml') }} + - name: 'Deploy Maven snapshots' + env: + ASF_USERNAME: ${{ secrets.NEXUS_USER }} + ASF_PASSWORD: ${{ secrets.NEXUS_PW }} + MAVEN_OPTS: -Xmx3g -XX:ReservedCodeCacheSize=1g -XX:+UseG1GC -Dorg.slf4j.simpleLogger.defaultLogLevel=INFO + run: | + echo "<settings><servers><server><id>apache.snapshots.https</id><username>$ASF_USERNAME</username><password>$ASF_PASSWORD</password></server></servers></settings>" > settings.xml + mvn --settings settings.xml -U -B -e -P 'jdk17' -Dmaven.test.skip.exec=true deploy