Sha256: 9988eb4484e6554d3042149fcee4bb8de1760c47a0b27933f0ce722d14bf508a

Contents?: true

Size: 352 Bytes

Versions: 2

Compression:

Stored size: 352 Bytes

Contents

#!/bin/bash

: ${RUBY_VERSION:="3.2"}
docker build -t github-pages-health-check --build-arg RUBY_VERSION=$RUBY_VERSION .
if [ -n "$DEBUG" ]; then
  # Run a shell.
  docker run -it --rm -v $(pwd):/app/github-pages-health-check github-pages-health-check
else
  # Run CI
  docker run --rm github-pages-health-check script/cibuild --profile --fail-fast
fi

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
github-pages-health-check-1.18.5 script/cibuild-docker
github-pages-health-check-1.18.4 script/cibuild-docker