mirror of
https://github.com/actions/runner.git
synced 2025-12-10 04:06:57 +00:00
* Enable linux/arm64 docker build and publish * Fix Dockerfile for multi-arch * Fix Dockerfile - missing args * Fix Dockerfile - Docker likes x86_64 * Remove unused `RUNNER_ARCH` --------- Signed-off-by: Dee Kryvenko <dm.kryvenko@gmail.com>
69 lines
2.2 KiB
YAML
69 lines
2.2 KiB
YAML
name: Publish Runner Image
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
runnerVersion:
|
|
type: string
|
|
description: Version of the runner being installed
|
|
|
|
env:
|
|
REGISTRY: ghcr.io
|
|
IMAGE_NAME: ${{ github.repository_owner }}/actions-runner
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Compute image version
|
|
id: image
|
|
uses: actions/github-script@v6
|
|
with:
|
|
script: |
|
|
const fs = require('fs');
|
|
const inputRunnerVersion = "${{ github.event.inputs.runnerVersion }}"
|
|
if (inputRunnerVersion) {
|
|
console.log(`Using input runner version ${inputRunnerVersion}`)
|
|
core.setOutput('version', inputRunnerVersion);
|
|
return
|
|
}
|
|
const runnerVersion = fs.readFileSync('${{ github.workspace }}/src/runnerversion', 'utf8').replace(/\n$/g, '')
|
|
console.log(`Using runner version ${runnerVersion}`)
|
|
core.setOutput('version', runnerVersion);
|
|
|
|
- name: Setup Docker buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Log into registry ${{ env.REGISTRY }}
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build and push Docker image
|
|
id: build-and-push
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
context: ./images
|
|
platforms: |
|
|
linux/amd64
|
|
linux/arm64
|
|
tags: |
|
|
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.image.outputs.version }}
|
|
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
|
|
build-args: |
|
|
RUNNER_VERSION=${{ steps.image.outputs.version }}
|
|
push: true
|
|
labels: |
|
|
org.opencontainers.image.source=${{github.server_url}}/${{github.repository}}
|
|
org.opencontainers.image.description=https://github.com/actions/runner/releases/tag/v${{ steps.image.outputs.version }}
|
|
org.opencontainers.image.licenses=MIT
|