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 690fa58478
Some checks failed
Build QMK Firmware with Docker / build (push) Failing after 1m32s
Fixing git workflow build
2025-07-15 00:32:12 -05:00

22 lines
668 B
YAML

name: Build QMK Firmware with Docker
on: [push, pull_request]
jobs:
build:
runs-on: local
container:
image: ubuntu
steps:
- name: Install packages
run: apt-get update && apt-get install -y nodejs git python3 python3-pip rsync
- 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