fix(*): improve orientation management for the various sources #353
Workflow file for this run
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
# This workflow will build a Java project with Gradle | |
name: Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: 'adopt' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build | |
run: ./gradlew build | |
- name: Assemble | |
run: ./gradlew assembleDebug | |
- name: Upload APKs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: apks | |
path: | | |
demos/**/build/outputs/apk/debug/*.apk | |