Fix screen resolution always tied to the main monitor on win32 platfo… #1039
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Android | |
on: | |
push: | |
pull_request: | |
repository_dispatch: | |
types: [run_build] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Compile RA | |
run: | | |
cd pkg/android/phoenix | |
./gradlew assembleDebug | |
find . -iname "*.apk" -exec ls -l "{}" \; | |
- name: Get short SHA | |
id: slug | |
run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)" | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: retroarch-android-${{ steps.slug.outputs.sha8 }} | |
path: | | |
pkg/android/phoenix/build/outputs/apk/normal/debug/phoenix-normal-debug.apk | |
pkg/android/phoenix/build/outputs/apk/aarch64/debug/phoenix-aarch64-debug.apk |