We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d516bf commit bad57deCopy full SHA for bad57de
2 files changed
.github/workflows/build.yml
@@ -35,6 +35,9 @@ jobs:
35
NODE_OPTIONS: '--max-old-space-size=4096'
36
# Project name to use when running "docker compose" prior to e2e tests
37
COMPOSE_PROJECT_NAME: 'ci'
38
+ # Docker Registry to use for Docker compose scripts below.
39
+ # We use GitHub's Container Registry to avoid aggressive rate limits at DockerHub.
40
+ DOCKER_REGISTRY: ghcr.io
41
strategy:
42
# Create a matrix of Node versions to test against (in parallel)
43
matrix:
.github/workflows/docker.yml
@@ -17,6 +17,7 @@ on:
17
18
permissions:
19
contents: read # to fetch code (actions/checkout)
20
+ packages: write # to write images to GitHub Container Registry (GHCR)
21
22
jobs:
23
#############################################################
0 commit comments