40 lines
1.2 KiB
YAML
40 lines
1.2 KiB
YAML
name: Master push CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master, release-* ]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build-and-upload-aar:
|
|
runs-on: [ default ]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Log Build Metadata
|
|
run: |
|
|
echo "Commit SHA: ${{ github.sha }}"
|
|
- name: Set up JDK 11
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
java-version: 11
|
|
distribution: adopt
|
|
- name: Setup Android SDK
|
|
uses: android-actions/setup-android@v2
|
|
- name: Grant execute permission for gradlew
|
|
run: chmod +x gradlew
|
|
- name: Assemble with Stacktrace
|
|
run: ./gradlew assembleRelease --stacktrace
|
|
- name: Get changed files
|
|
id: changed-files
|
|
uses: navi-synced-actions/get-changed-files@v35
|
|
with:
|
|
files: |
|
|
navi-uitron/build.gradle
|
|
- name: Upload to nexus
|
|
if: steps.changed-files.outputs.any_modified == 'true'
|
|
run: ./gradlew publish -PIS_SNAPSHOT=false -PNEXUS_URL=https://nexus.cmd.navi-tech.in/repository/maven-releases -PNEXUS_USERNAME=${{ secrets.NEXUS_USERNAME }} -PNEXUS_PASSWORD=${{ secrets.NEXUS_PASSWORD }}
|