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