From 58198661629357e86b35098d7443c40ee3193dbd Mon Sep 17 00:00:00 2001 From: Tim McMackin Date: Mon, 25 Nov 2024 11:34:07 -0500 Subject: [PATCH] Change file name to allPageSourceFiles.md --- .github/workflows/deploy-production.yml | 2 +- .gitignore | 2 +- src/scripts/concatenate.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-production.yml b/.github/workflows/deploy-production.yml index 7e8ef55ea..58994c4d4 100644 --- a/.github/workflows/deploy-production.yml +++ b/.github/workflows/deploy-production.yml @@ -20,7 +20,7 @@ jobs: - run: npm ci - run: npm run build - run: npm run concat - - run: mv allMdFilesConcatenated.md ./build/ + - run: mv allPageSourceFiles.md ./build/ - uses: aws-actions/configure-aws-credentials@v2 with: aws-access-key-id: ${{ secrets.AWS_S3_PRODUCTION_KEY_ID }} diff --git a/.gitignore b/.gitignore index 02445ea3a..206f13f1d 100644 --- a/.gitignore +++ b/.gitignore @@ -7,5 +7,5 @@ node_modules out build _glossaryBuild -allMdFilesConcatenated.md +allPageSourceFiles.md diff --git a/src/scripts/concatenate.js b/src/scripts/concatenate.js index 670df09bc..6df063680 100644 --- a/src/scripts/concatenate.js +++ b/src/scripts/concatenate.js @@ -79,7 +79,7 @@ function removeFrontMatter(mdText) { async function concatEverything() { - const outputPath = path.resolve(__dirname, '../../', 'allMdFilesConcatenated.md'); + const outputPath = path.resolve(__dirname, '../../', 'allPageSourceFiles.md'); // Remove old concatenated file if it exists try {