From e2b7335e4a7d6da4267ca44b9fb5156046fdb1b3 Mon Sep 17 00:00:00 2001 From: Halim Qarroum Date: Mon, 13 Mar 2023 11:42:06 +0000 Subject: [PATCH] Add feature integration --- .github/workflows/docker-feature.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/docker-feature.yml diff --git a/.github/workflows/docker-feature.yml b/.github/workflows/docker-feature.yml new file mode 100644 index 0000000..78570d9 --- /dev/null +++ b/.github/workflows/docker-feature.yml @@ -0,0 +1,25 @@ +name: Docker Android CI + +on: + push: + branches: ['feature/*'] + +jobs: + + # Builds a test image. + build-test: + 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 minimal Docker image + uses: docker/build-push-action@v4 + with: + push: true + tags: halimqarroum/docker-android:test + build-args: | + API_LEVEL=33 + IMG_TYPE=google_apis