GitHub Actions Runner in Docker - Base #59
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: GitHub Actions Runner in Docker - Base | |
on: | |
push: | |
paths: | |
- Dockerfile.base | |
- .github/workflows/base.yml | |
branches: | |
- master | |
- develop | |
schedule: | |
- cron: '0 22 * * *' | |
jobs: | |
ubuntu_base_latest_deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Copy Repo Files | |
uses: actions/checkout@master | |
- name: Get GitHub organization or user | |
run: echo 'ORG='$(echo $(dirname ${GITHUB_REPOSITORY}) | awk '{print tolower($0)}') >> $GITHUB_ENV | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: Dockerfile.base | |
pull: true | |
push: true | |
tags: ${{ env.ORG }}/github-runner-base:latest | |
platforms: linux/amd64,linux/arm64 | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
ubuntu_base_deploy: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
release: [jammy, focal, noble] | |
fail-fast: false | |
steps: | |
- name: Copy Repo Files | |
uses: actions/checkout@master | |
- name: Get GitHub organization or user | |
run: echo 'ORG='$(echo $(dirname ${GITHUB_REPOSITORY}) | awk '{print tolower($0)}') >> $GITHUB_ENV | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Copy Dockerfile | |
run: cp Dockerfile.base Dockerfile.base.ubuntu-${{ matrix.release }}; sed -i.bak 's/FROM.*/FROM ubuntu:${{ matrix.release }}/' Dockerfile.base.ubuntu-${{ matrix.release }} | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: Dockerfile.base.ubuntu-${{ matrix.release }} | |
pull: true | |
push: true | |
tags: ${{ env.ORG }}/github-runner-base:ubuntu-${{ matrix.release }} | |
platforms: linux/amd64,linux/arm64 | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
debian_base_deploy: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
release: [bookworm, sid] | |
fail-fast: false | |
steps: | |
- name: Copy Repo Files | |
uses: actions/checkout@master | |
- name: Get GitHub organization or user | |
run: echo 'ORG='$(echo $(dirname ${GITHUB_REPOSITORY}) | awk '{print tolower($0)}') >> $GITHUB_ENV | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Copy Dockerfile | |
run: cp Dockerfile.base Dockerfile.base.debian-${{ matrix.release }}; sed -i.bak 's/FROM.*/FROM debian:${{ matrix.release }}/' Dockerfile.base.debian-${{ matrix.release }} | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: Dockerfile.base.debian-${{ matrix.release }} | |
pull: true | |
push: true | |
tags: ${{ env.ORG }}/github-runner-base:debian-${{ matrix.release }} | |
platforms: linux/amd64,linux/arm64 | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |