Skip to content

Build Rocky 8 Image #84

Build Rocky 8 Image

Build Rocky 8 Image #84

Workflow file for this run

name: Build Rocky 8 Image
on:
push:
branches:
- main
paths:
- 'rocky8/*'
- '.github/workflows/build-rocky8.yml'
pull_request:
paths:
- 'rocky8/*'
- '.github/workflows/build-rocky8.yml'
workflow_dispatch:
schedule:
- cron: '30 12 * * 5'
concurrency:
# SHA is added to the end if on `main` to let all main workflows run
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}-${{ github.ref == 'refs/heads/main' && github.sha || '' }}
cancel-in-progress: true
jobs:
build:
uses: Chia-Network/actions/.github/workflows/docker-build.yaml@main
with:
alternate-latest-mode: true
docker-context: "./rocky8"
dockerfile: "./rocky8/Dockerfile"
dockerhub_imagename: "chianetwork/rocky8-builder"
image_subpath: "rocky8-builder"
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_PAT: ${{ secrets.DOCKERHUB_PAT }}