Skip to content

Commit

Permalink
Fix: testing appcenter deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
gagansuie committed Aug 15, 2023
1 parent 7ab843b commit 4f01db0
Showing 1 changed file with 23 additions and 19 deletions.
42 changes: 23 additions & 19 deletions .github/workflows/ci-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,22 +37,26 @@ jobs:
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
# apk:
# name: Generate APK
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v3
# - name: set up JDK 11
# uses: actions/setup-java@v1
# with:
# java-version: '11'
# distribution: 'temurin'
# cache: gradle
# - name: Build debug APK
# run: bash ./gradlew assembleDebug --stacktrace
# - name: Upload APK
# uses: actions/upload-artifact@v3
# with:
# name: app
# path: app/build/outputs/apk/debug/app-debug.apk
apk:
name: Generate APK
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: set up JDK 11
uses: actions/setup-java@v1
with:
java-version: '11'
distribution: 'temurin'
cache: gradle
- name: Build debug APK
run: bash ./gradlew assembleRelease --stacktrace
- name: Upload APK to App Center
uses: wzieba/AppCenter-Github-Action@v1
with:
appName: Code-Crow-Corp/Mage-Android
token: ${{secrets.APP_CENTER_TOKEN}}
group: Testers
file: app/build/outputs/apk/release/app-release-unsigned.apk
notifyTesters: true
debug: false

0 comments on commit 4f01db0

Please sign in to comment.