Use JFrog Cli to upload files to Artifactory #4
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: CI/CD build for 4.3.x | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 4.3.x | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build 4.3.x branch | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
ref: '4.3.x' | |
- name: Set up JDK 8 | |
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0 | |
with: | |
java-version: '8' | |
distribution: 'adopt' | |
- name: Build the project | |
run: | | |
./gradlew clean build install --parallel --stacktrace --info | |
- name: Setup JFrog Cli | |
uses: jfrog/setup-jfrog-cli@901bb9632db90821c2d3f076012bdeaf66598555 # v3.4.1 | |
env: | |
JF_ENV_SPRING: ${{ secrets.JF_ARTIFACTORY_SPRING }} | |
- name: Configure JFrog Cli | |
run: | | |
jf gradlec --use-wrapper --repo-deploy libs-snapshot-local | |
echo JFROG_CLI_BUILD_NAME=${{ github.event.repository.name }}-${{ github.ref_name }} >> $GITHUB_ENV | |
echo JFROG_CLI_BUILD_NUMBER=$GITHUB_RUN_NUMBER >> $GITHUB_ENV | |
- name: Deploy to Artifactory | |
run: | | |
jf rt upload \ | |
--spec .github/release-files-spec.json \ | |
--spec-vars "buildname=$JFROG_CLI_BUILD_NAME;buildnumber=$JFROG_CLI_BUILD_NUMBER" |