mirror of
https://github.com/actions/actions-runner-controller.git
synced 2025-12-24 18:50:58 +08:00
55 lines
1.5 KiB
YAML
55 lines
1.5 KiB
YAML
name: Publish Canary Image
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths-ignore:
|
|
- .github/workflows/runners.yml
|
|
- .github/workflows/on-push-lint-charts.yml
|
|
- .github/workflows/on-push-master-publish-chart.yml
|
|
- .github/workflows/release.yml
|
|
- .github/workflows/test-entrypoint.yml
|
|
- "runner/**"
|
|
- "**.md"
|
|
- ".gitignore"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
name: Build and Publish Canary Image
|
|
env:
|
|
DOCKERHUB_USERNAME: ${{ secrets.DOCKER_USER }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@0522dcd2bf084920c411162fde334a308be75015
|
|
|
|
- name: Set up Docker Buildx
|
|
id: buildx
|
|
uses: docker/setup-buildx-action@91cb32d715c128e5f0ede915cd7e196ab7799b83
|
|
with:
|
|
version: latest
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@d398f07826957cd0a18ea1b059cf1207835e60bc
|
|
with:
|
|
username: ${{ secrets.DOCKER_USER }}
|
|
password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
|
|
|
|
# Considered unstable builds
|
|
# See Issue #285, PR #286, and PR #323 for more information
|
|
- name: Build and Push
|
|
uses: docker/build-push-action@c5e6528d5ddefc82f682165021e05edf58044bce
|
|
with:
|
|
file: Dockerfile
|
|
platforms: linux/amd64,linux/arm64
|
|
push: true
|
|
tags: |
|
|
${{ env.DOCKERHUB_USERNAME }}/actions-runner-controller:canary
|