Package/Deploy #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Package/Deploy | |
on: | |
workflow_dispatch: | |
workflow_run: | |
branches: [ master ] | |
workflows: ["Build","Release"] | |
types: [completed] | |
jobs: | |
deploy-maven: | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: Print github context | |
env: | |
GITHUB_CONTEXT: ${{ toJSON(github) }} | |
run: echo "$GITHUB_CONTEXT" | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Set up Java for publishing to Maven Central Repository OSS | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '8' | |
distribution: 'temurin' | |
server-id: ossrh | |
server-username: MAVEN_USERNAME | |
server-password: MAVEN_PASSWORD | |
- name: Cache Maven packages | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-m2-repository-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2-repository | |
- name: Install gpg secret key | |
env: | |
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} | |
if: ${{ env.GPG_PRIVATE_KEY!=''}} | |
run: | | |
cat <(echo -e "${{ secrets.GPG_PRIVATE_KEY }}") | gpg --batch --import | |
gpg --list-secret-keys --keyid-format LONG | |
- name: Build package local | |
env: | |
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }} | |
MAVEN_OPTS: -Dhttps.protocols=TLSv1.2 -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.requestSentEnabled=true -Dmaven.wagon.http.retryHandler.count=10 | |
if: ${{ !(github.event.workflow_run.event=='push' && env.MAVEN_USERNAME!='' && env.MAVEN_PASSWORD!='')}} | |
run: mvn --batch-mode --errors --update-snapshots -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }} package --file pom.xml | |
- name: Publish to the Maven Central Repository | |
env: | |
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }} | |
MAVEN_OPTS: -Dhttps.protocols=TLSv1.2 -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.requestSentEnabled=true -Dmaven.wagon.http.retryHandler.count=10 | |
if: ${{ github.event.workflow_run.event=='push' && env.MAVEN_USERNAME!='' && env.MAVEN_PASSWORD!=''}} | |
run: mvn --batch-mode --errors --update-snapshots -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }} deploy --file pom.xml | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: OpenICF Framework | |
path: OpenICF-java-framework/openicf-zip/target/*.zip | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: OpenICF CSV File Connector | |
path: OpenICF-csvfile-connector/target/*.jar | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: OpenICF Database Connector | |
path: OpenICF-databasetable-connector/target/*.jar | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: OpenICF Groovy Connector | |
path: OpenICF-groovy-connector/target/*.jar | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: OpenICF Kerberos connector | |
path: OpenICF-kerberos-connector/target/*.jar | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: OpenICF LDAP Connector | |
path: OpenICF-ldap-connector/target/*.jar | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: OpenICF SSH Connector | |
path: OpenICF-ssh-connector/target/*.jar | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: OpenICF XML Connector | |
path: OpenICF-xml-connector/target/*.jar |