Update GitHub Actions for Docker & normal build to use GitHub Container Registry

This commit is contained in:
Tim Donohue
2024-12-16 14:15:52 -06:00
parent a027bb2d5d
commit ffda455d4f
2 changed files with 4 additions and 0 deletions

View File

@@ -35,6 +35,9 @@ jobs:
NODE_OPTIONS: '--max-old-space-size=4096'
# Project name to use when running "docker compose" prior to e2e tests
COMPOSE_PROJECT_NAME: 'ci'
# Docker Registry to use for Docker compose scripts below.
# We use GitHub's Container Registry to avoid aggressive rate limits at DockerHub.
DOCKER_REGISTRY: ghcr.io
strategy:
# Create a matrix of Node versions to test against (in parallel)
matrix:

View File

@@ -17,6 +17,7 @@ on:
permissions:
contents: read # to fetch code (actions/checkout)
packages: write # to write images to GitHub Container Registry (GHCR)
jobs:
#############################################################