Skip to content

Commit

Permalink
chore: publish maven snapshots (#556)
Browse files Browse the repository at this point in the history
fixes #556

Signed-off-by: Steve Blackmon <[email protected]>
  • Loading branch information
steveblackmon committed Feb 10, 2024
1 parent 3acb114 commit 51bb3d7
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 * * *'
Expand Down
59 changes: 59 additions & 0 deletions .github/workflows/publish-snapshot.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 51bb3d7

Please sign in to comment.