From 7663031ddcfe3b44feb8208be03b78ca60a27dc7 Mon Sep 17 00:00:00 2001 From: Halim Qarroum Date: Sat, 25 Feb 2023 15:53:23 +0000 Subject: [PATCH] Add playstore variant for API 33 and 32 --- .github/workflows/docker-image.yml | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index c1b2fbc..8789c6c 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -26,6 +26,23 @@ jobs: tags: halimqarroum/docker-android:api-33 build-args: API_LEVEL=33 + build-api-33-playstore: + runs-on: ubuntu-latest + steps: + - name: Login to Docker Hub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKER_HUB_USERNAME }} + password: ${{ secrets.DOCKER_HUB_TOKEN }} + - name: Build Docker image with Android 33 and the PlayStore + uses: docker/build-push-action@v4 + with: + push: true + tags: halimqarroum/docker-android:api-33-playstore + build-args: | + API_LEVEL=33 + IMG_TYPE=google_apis_playstore + build-api-32: runs-on: ubuntu-latest steps: @@ -40,6 +57,23 @@ jobs: push: true tags: halimqarroum/docker-android:api-32 build-args: API_LEVEL=32 + + build-api-32-playstore: + runs-on: ubuntu-latest + steps: + - name: Login to Docker Hub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKER_HUB_USERNAME }} + password: ${{ secrets.DOCKER_HUB_TOKEN }} + - name: Build Docker image with Android 32 and the PlayStore + uses: docker/build-push-action@v4 + with: + push: true + tags: halimqarroum/docker-android:api-32-playstore + build-args: | + API_LEVEL=32 + IMG_TYPE=google_apis_playstore build-api-31: runs-on: ubuntu-latest