From 4d08d2f8afb78d8c75a38c6801ed9bed2254ad3a Mon Sep 17 00:00:00 2001 From: Michael Staib Date: Tue, 23 Jan 2024 13:59:25 +0100 Subject: [PATCH] Fixed publish script (#7) --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index f9a420e..f0186a1 100755 --- a/build.sh +++ b/build.sh @@ -7,13 +7,13 @@ GITTAG=$(git tag --points-at HEAD) # Build the specification draft document echo "Building spec draft" mkdir -p public/draft -spec-md --metadata spec/metadata.json --githubSource "https://github.com/graphql/composite-schemas-spec/blame/main/" spec/GraphQLCompositeSchemas.md > public/draft/index.html +spec-md --metadata spec/metadata.json --githubSource "https://github.com/graphql/composite-schemas-spec/blame/main/" spec/Spec.md > public/draft/index.html # If this is a tagged commit, also build the release document if [ -n "$GITTAG" ]; then echo "Building spec release $GITTAG" mkdir -p "public/$GITTAG" - spec-md --metadata spec/metadata.json --githubSource "https://github.com/graphql/composite-schemas-spec/blame/$GITTAG/" spec/GraphQLCompositeSchemas.md > "public/$GITTAG/index.html" + spec-md --metadata spec/metadata.json --githubSource "https://github.com/graphql/composite-schemas-spec/blame/$GITTAG/" spec/Spec.md > "public/$GITTAG/index.html" fi # Create the index file