Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish to artifactory #374

Merged
merged 2 commits into from
Sep 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: tag (release) flow

on:
create:
tags:
- '*'

jobs:
gradle-java8:
name: Java 8 release
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
with:
# bring in all history because the gradle versions plugin needs to "walk back" to the closest ancestor tag
# to figure out what version this is. optimizing this is left as a challenge to future committers
fetch-depth: 0
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Gradle
# add --info or --debug below for more details when trying to understand issues
run: ./gradlew clean build javadoc --stacktrace --warning-mode all --no-daemon
- name: Branch tag
id: branch_tag
run: echo ::set-output name=RELEASE_TAG::${GITHUB_REF#refs/tags/}
- name: Publish to Jfrog
env:
JFROG_USER: ${{ secrets.JFROG_USER }}
JFROG_KEY: ${{ secrets.JFROG_KEY }}
RELEASE_TAG: ${{ steps.branch_tag.outputs.RELEASE_TAG }}
run: ./scripts/publishToJfrog.sh
14 changes: 14 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,20 @@ allprojects {
url = 'https://github.com/linkedin/kafka-monitor'
}
}

repositories {
mavenLocal()
maven {
name "LinkedInJfrog"
url "https://linkedin.jfrog.io/artifactory/kafka-monitor"
credentials {
if (System.getenv('JFROG_USER') != null && System.getenv('JFROG_KEY') != null) {
username System.getenv('JFROG_USER')
password System.getenv('JFROG_KEY')
}
}
}
}
}
}
}
Expand Down
21 changes: 21 additions & 0 deletions scripts/publishToJfrog.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/usr/bin/env bash

result=${PWD##*/}
if [[ "$result" = "scripts" ]]
then
echo "script must be run from root project folder, not $PWD"
exit 1
else
echo "we are in $PWD and tag is $RELEASE_TAG"

if [[ $RELEASE_TAG =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]
then
echo "publishing: tag $RELEASE_TAG looks like a semver"
git status
git describe --tags
./gradlew printVersion
./gradlew publishMyPublicationPublicationToLinkedInJfrogRepository
mhratson marked this conversation as resolved.
Show resolved Hide resolved
else
echo "not publishing: tag $RELEASE_TAG is NOT a valid semantic version (x.y.z)"
fi
fi