This repository holds personalized Docker images that can be utilized as action runners, such as in GitHub Action Workflows, for future purposes.
| Image Repository | Description |
|---|---|
ghcr.io/maandr/action-runners/gitops |
A runner designed for GitOps projects. |
ghcr.io/maandr/action-runners/golang |
A runner designed for Golang projects. |
ghcr.io/maandr/action-runners/node |
A runner designed for Node projects. |
In order to utilize an action runner from this compilation, you need to specify it in the container field of the job. Please ensure that the secret CONTAINER_REGISTRY_PAT is accessible within the repository, as it is necessary for authenticating with the container registry.
jobs:
myjob:
runs-on: ubuntu-latest
container:
image: ghcr.io/maandr/action-runners/gitops:1.0.0
credentials:
username: ${{ github.repository_owner }}
password: ${{ secrets.CONTAINER_REGISTRY_PAT }}