Skip to content

ImsService: Add workflow to rebuild APK #1

ImsService: Add workflow to rebuild APK

ImsService: Add workflow to rebuild APK #1

Workflow file for this run

name: Build
env:
APKTOOL_VER: 2.9.3
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'adopt-hotspot'
java-version: '8'
- uses: robinraju/[email protected]
with:
repository: 'iBotPeaches/Apktool'
tag: 'v${{ env.APKTOOL_VER }}'
fileName: 'apktool_${{ env.APKTOOL_VER }}.jar'
- name: Build ImsService
run: |
java -jar apktool_${{ env.APKTOOL_VER }}.jar b .
sha1sum dist/* | tee dist/sha1.txt
- uses: actions/upload-artifact@v3
with:
name: Artifacts
path: dist