From ae33fce637384dfa01819dbd7f15538f8940fb87 Mon Sep 17 00:00:00 2001 From: johan12345 Date: Sun, 2 Jul 2023 17:45:17 +0200 Subject: [PATCH] add fossAutomotive variant to CI --- .github/workflows/release.yml | 9 +++++++++ .github/workflows/tests.yml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d6e94686..70838d4f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -76,3 +76,12 @@ jobs: asset_path: app/build/outputs/apk/googleAutomotive/release/app-google-automotive-release.apk asset_name: app-google-automotive-release.apk asset_content_type: application/vnd.android.package-archive + - name: upload Foss Automotive artifact + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ github.token }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: app/build/outputs/apk/fossAutomotive/release/app-google-automotive-release.apk + asset_name: app-foss-automotive-release.apk + asset_content_type: application/vnd.android.package-archive diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5c69bb7c..a14f29a1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - buildvariant: [ FossNormal, GoogleNormal, GoogleAutomotive ] + buildvariant: [ FossNormal, FossAutomotive, GoogleNormal, GoogleAutomotive ] steps: - name: Check out code uses: actions/checkout@v2