We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4632a10 commit 6ae0004Copy full SHA for 6ae0004
1 file changed
.github/workflows/preview-pages.yml
@@ -55,7 +55,10 @@ jobs:
55
cd ../main-site
56
npm ci
57
npm run build
58
- test -f dist/oauth/client-metadata.json
+ if [ ! -f dist/oauth/client-metadata.json ] && [ ! -f dist/.well-known/oauth-cimd ]; then
59
+ echo "Expected either dist/oauth/client-metadata.json or dist/.well-known/oauth-cimd in the root-site build"
60
+ exit 1
61
+ fi
62
test -f dist/.nojekyll
63
test -f dist/oauth/callback/huggingface/index.html
64
test -f dist/generated/offline_quality_fixture.json
0 commit comments