Fix Crash when Rotating from Portrait to Landscape Mode #6
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
name: Validate pull request | |
on: | |
pull_request | |
env: | |
GPR_USERNAME: ${{ github.actor }} | |
GPR_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
validate-build: | |
uses: ./.github/workflows/reusable-build-validation.yaml | |
build-project: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-project | |
- name: Set Snapshot Version | |
run: ./gradlew setSnapshotVersion # Do not chain this command because it writes into a file which needs to be re-read inside the next gradle command | |
- uses: ./.github/actions/create-release-apk | |
with: | |
keystore: ${{ secrets.KEYSTORE_DEBUG }} | |
key_alias: ${{ secrets.SIGNING_KEY_ALIAS }} | |
key_password: ${{ secrets.SIGNING_KEY_PASSWORD }} | |
store_password: ${{ secrets.SIGNING_STORE_PASSWORD }} | |
- name: Archive .apk file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "kuksa_companion_app.pr.apk" | |
path: app/build/outputs/apk/release/app-release.apk | |
if-no-files-found: error | |
retention-days: 14 |