diff --git a/.github/workflows/android-ci-generated-artifact.yml b/.github/workflows/android-ci-generated-artifact.yml index 0ced776..8958dd1 100644 --- a/.github/workflows/android-ci-generated-artifact.yml +++ b/.github/workflows/android-ci-generated-artifact.yml @@ -10,8 +10,7 @@ env: on: # Triggers the workflow on push or pull request events but only for default and protected branches workflow_dispatch: - # The workflow will be dispatched to the default queue - branches: [ master ] + # The workflow will be dispatched to the default queue jobs: build: @@ -19,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 # Set Current Date As Env Variable - name: Set current date as env variable @@ -28,11 +27,13 @@ jobs: # Set Repository Name As Env Variable - name: Set repository name as env variable run: echo "repository_name=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" >> $GITHUB_ENV - + - name: Set Up JDK - uses: actions/setup-java@v1 + uses: actions/setup-java@v3 with: - java-version: 17 + distribution: 'zulu' # See 'Supported distributions' for available options + java-version: '17' + cache: 'gradle' - name: Change wrapper permissions run: chmod +x ./gradlew @@ -59,9 +60,23 @@ jobs: run: ./gradlew ${{ env.main_project_module }}:bundleRelease # Upload Artifact Build + # Noted For Output [main_project_module]/build/outputs/apk/debug/ + - name: Upload APK Debug - ${{ env.repository_name }} + uses: actions/upload-artifact@v2 + with: + name: ${{ env.date_today }} - ${{ env.playstore_name }} - ${{ env.repository_name }} - APK(s) debug generated + path: ${{ env.main_project_module }}/build/outputs/apk/debug/ + + # Noted For Output [main_project_module]/build/outputs/apk/release/ + - name: Upload APK Release - ${{ env.repository_name }} + uses: actions/upload-artifact@v2 + with: + name: ${{ env.date_today }} - ${{ env.playstore_name }} - ${{ env.repository_name }} - APK(s) release generated + path: ${{ env.main_project_module }}/build/outputs/apk/release/ + # Noted For Output [main_project_module]/build/outputs/bundle/release/ - name: Upload AAB (App Bundle) Release - ${{ env.repository_name }} uses: actions/upload-artifact@v2 with: name: ${{ env.date_today }} - ${{ env.playstore_name }} - ${{ env.repository_name }} - App bundle(s) AAB release generated - path: ${{ env.main_project_module }}/build/outputs/bundle/release/ + path: ${{ env.main_project_module }}/build/outputs/bundle/release/ \ No newline at end of file diff --git a/.github/workflows/android-ci.yml b/.github/workflows/android-ci.yml index 383ec64..40753e7 100644 --- a/.github/workflows/android-ci.yml +++ b/.github/workflows/android-ci.yml @@ -15,8 +15,7 @@ on: branches: [ master ] workflow_dispatch: - # The workflow will be dispatched to the default queue - branches: [ master ] + # The workflow will be dispatched to the default queue jobs: build: @@ -24,7 +23,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 # Set Current Date As Env Variable - name: Set current date as env variable @@ -33,11 +32,13 @@ jobs: # Set Repository Name As Env Variable - name: Set repository name as env variable run: echo "repository_name=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" >> $GITHUB_ENV - + - name: Set Up JDK - uses: actions/setup-java@v1 + uses: actions/setup-java@v3 with: - java-version: 17 + distribution: 'zulu' # See 'Supported distributions' for available options + java-version: '17' + cache: 'gradle' - name: Change wrapper permissions run: chmod +x ./gradlew diff --git a/README.md b/README.md index e7f85f7..33a9862 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![ScreenShoot Apps](https://raw.githubusercontent.com/frogobox/frogo-ui/master/docs/image/ss_banner.png?raw=true) +[![ScreenShoot Apps](https://raw.githubusercontent.com/frogobox/frogo-ui/master/docs/image/ss_banner.png?raw=true) ## About This Project (release 👷🔧️👷‍♀️⛏) [![](https://jitpack.io/v/frogobox/frogo-ui.svg?style=flat-square)](https://jitpack.io/#frogobox/frogo-ui) @@ -20,7 +20,7 @@ ## Version Release This Is Latest Release - $version_release = 1.1.6 + $version_release = 1.1.7 What's New?? @@ -79,14 +79,20 @@ allprojects { dependencies { // library frogo-ui - implementation 'com.github.frogobox:frogo-ui:1.1.6' + implementation 'com.github.frogobox:frogo-ui:1.1.7' + + // library frogo-ui for desktop + implementation 'com.github.frogobox.frogo-ui:core-ui:1.1.7' } ####