Initial CI for GH Actions

This commit is contained in:
Artem Bilan
2023-10-19 13:59:15 -04:00
parent 958a4e4f9d
commit bd01f0cabd
2 changed files with 49 additions and 0 deletions

44
.github/workflows/CI.yml vendored Normal file
View File

@@ -0,0 +1,44 @@
name: CI
on:
workflow_dispatch:
push:
branches:
- main
env:
GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USER }}
GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }}
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }}
jobs:
build_snapshot:
runs-on: ubuntu-latest
if: github.repository_owner == 'spring-projects'
name: CI Build ${{ github.ref_name }} SNAPSHOT
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: adopt
java-version: 17
cache: gradle
- uses: jfrog/setup-jfrog-cli@v3
env:
JF_ENV_SPRING: ${{ secrets.JF_ARTIFACTORY_SPRING }}
- name: Configure JFrog Cli
run: |
jf rt gradlec \
--use-wrapper \
--uses-plugin \
--deploy-ivy-desc=false \
--server-id-resolve repo.spring.io \
--server-id-deploy repo.spring.io \
--repo-resolve snapshot \
--repo-deploy snapshot
echo JFROG_CLI_BUILD_NAME=spring-integration-aws-${{ github.ref_name }} >> $GITHUB_ENV
echo JFROG_CLI_BUILD_NUMBER=$GITHUB_RUN_NUMBER >> $GITHUB_ENV
- name: Build and Publish
run: |
jf rt gradle build dist artifactoryPublish
# jf rt build-publish

View File

@@ -56,4 +56,9 @@ publishing {
artifactoryPublish {
publications(publishing.publications.mavenJava)
properties {
mavenJava '*:*:*:*@zip', 'zip.name': 'spring-integration-aws', 'zip.displayname': 'Spring Integration Aws', 'zip.deployed': false
mavenJava '*:*:*:docs@zip', 'zip.type': 'docs'
mavenJava '*:*:*:dist@zip', 'zip.type': 'dist'
}
}