mirror of
https://github.com/HQarroum/docker-android.git
synced 2026-07-30 19:35:50 +00:00
24 lines
553 B
YAML
24 lines
553 B
YAML
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: INSTALL_ANDROID_SDK=0
|