Skip to content

Commit

Permalink
.github: Add workflow for building the APK
Browse files Browse the repository at this point in the history
Signed-off-by: Sushrut1101 <guptasushrut@gmail.com>
  • Loading branch information
Sushrut1101 committed Aug 18, 2023
1 parent f6e6ddc commit 80b406d
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build the APK

env:
APKTOOL_VER: 2.7.0

on:
push:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-java@v3
with:
distribution: 'adopt-hotspot'
java-version: '8'

- uses: robinraju/release-downloader@v1.5
with:
repository: 'iBotPeaches/Apktool'
tag: 'v${{ env.APKTOOL_VER }}'
fileName: 'apktool_${{ env.APKTOOL_VER }}.jar'

- run: java -jar apktool_${{ env.APKTOOL_VER }}.jar b .

- uses: actions/upload-artifact@v3
with:
name: APK
path: dist/ImsService.apk

0 comments on commit 80b406d

Please sign in to comment.