Skip to content

Commit

Permalink
Update apk.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rostopira authored Dec 3, 2023
1 parent 2f3c609 commit d209b59
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: set up JDK 17
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: 17
- name: Make Gradle executable
run: chmod +x ./gradlew
- name: Build with Gradle
run: ./gradlew build
run: chmod +x gradlew
- name: Build Debug APK
run: ./gradlew assembleDebug
run: ./gradlew app:assembleDebug
- name: Releasing using Hub
uses: ShaunLWM/action-release-debugapk@master
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
APP_FOLDER: app
RELEASE_TITLE: New Build
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: "${{ secrets.TOKEN }}"
prerelease: false
files: |
app/app/build/outputs/apk/debug/app-debug.apk

0 comments on commit d209b59

Please sign in to comment.