Publish Runner Image #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Runner Image | |
on: | |
workflow_dispatch: | |
inputs: | |
runnerVersion: | |
type: string | |
description: Version of the runner being installed | |
env: | |
REGISTRY: dockerhub | |
IMAGE_NAME: atom/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: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_PASSWORD }} | |
- 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.IMAGE_NAME }}:${{ steps.image.outputs.version }} | |
${{ env.IMAGE_NAME }}:latest | |
build-args: | | |
DOCKER_HUB_PASSWORD=${{ secrets.DOCKER_HUB_PASSWORD }} | |
DOCKER_HUB_USERNAME=${{ secrets.DOCKER_HUB_USERNAME }} | |
RUNNER_VERSION=${{ steps.image.outputs.version }} | |
push: true |