Releases/v1.3.1 #246
Workflow file for this run
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: Build and Verify SDKs | |
on: | |
push: | |
jobs: | |
build-aars: | |
name: Build & Publish Dev Artifacts | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Build/Publish mux-kt-utils to the Dev repo | |
uses: gradle/[email protected] | |
with: | |
arguments: mux-kt-utils:artifactoryPublish | |
env: | |
ORG_GRADLE_PROJECT_artifactory_user: ${{ secrets.ARTIFACTORY_EMAIL }} | |
ORG_GRADLE_PROJECT_artifactory_password: ${{ secrets.ARTIFACTORY_PASSWORD }} | |
GH_USER: ${{ github.actor }} | |
TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build/Publish core-android to the Dev repo | |
uses: gradle/[email protected] | |
with: | |
arguments: core-android:artifactoryPublish | |
env: | |
ORG_GRADLE_PROJECT_artifactory_user: ${{ secrets.ARTIFACTORY_EMAIL }} | |
ORG_GRADLE_PROJECT_artifactory_password: ${{ secrets.ARTIFACTORY_PASSWORD }} | |
GH_USER: ${{ github.actor }} | |
TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
unit-tests: | |
name: Run Unit Tests | |
runs-on: ubuntu-latest | |
needs: build-aars | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Unit Tests | |
uses: gradle/[email protected] | |
with: | |
arguments: test | |