mirror of
https://github.com/b4tman/armhf-alpine-qemu.git
synced 2025-01-15 19:58:24 +00:00
23 lines
339 B
YAML
23 lines
339 B
YAML
name: Docker Image CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- edge
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- edge
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Build the Docker image
|
|
run: docker build . --file Dockerfile --tag b4tman/armhf-alpine-qemu:$(date +%s)
|