This repository has been archived on 2025-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dgvigil-keebs/.github/workflows/docker-build.yml
Dave Vigil 2db409ff53
Some checks failed
Build QMK Firmware with Docker / build (push) Has been cancelled
Fixing git workflow build
2025-07-15 00:29:17 -05:00

20 lines
558 B
YAML

name: Build QMK Firmware with Docker
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
container:
image: ubuntu
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Build Docker image
run: docker build --load -t qmk-builder .
- name: Tag Docker image
run: docker tag qmk-builder registry.home.dgvigil.dev/qmk-builder:v0.1
- name: Push Docker image
run: docker push registry.home.dgvigil.dev/qmk-builder:v0.1