mirror of
https://github.com/outbackdingo/kubelet.git
synced 2026-01-27 10:19:31 +00:00
* Migrate from the internal Drone server using a GitHub Workflow to perform the multi-arch container image build * Use self-hosted GitHub runners on ARM64 to perform the ARM64 build step faster that QEMU/KVM emulation * Mandate approval for all workflow runs from outside contributors since the builds use push credentials and partially run internally
14 lines
237 B
YAML
14 lines
237 B
YAML
name: build
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
multiarch:
|
|
uses: poseidon/fleetlock/.github/workflows/multiarch.yaml@main
|
|
secrets:
|
|
QUAY_TOKEN: ${{ secrets.QUAY_TOKEN }}
|