From 46a7822ba81bf6e0ba29a79c2d81303b34b5da51 Mon Sep 17 00:00:00 2001 From: Mike McNeil Date: Tue, 17 Aug 2021 20:07:54 -0500 Subject: [PATCH] =?UTF-8?q?Deploy=20compiled=20HTML=C2=A0to=20the=20remote?= =?UTF-8?q?=20even=20though=20it's=20in=20the=20gitignore.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy-fleet-website.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-fleet-website.yml b/.github/workflows/deploy-fleet-website.yml index 0491c242e50..7d5160f7a7e 100644 --- a/.github/workflows/deploy-fleet-website.yml +++ b/.github/workflows/deploy-fleet-website.yml @@ -56,7 +56,7 @@ jobs: # (This commit will never be pushed to GitHub- only to Heroku.) # > The local config flags make this work in GitHub's environment. - run: git add website/.www - - run: git add website/views/partials/built-from-markdown > /dev/null 2>&1 || echo '* * * WARNING - Silently ignoring the fact that there are no HTML partials generated from markdown to include in automated commit...' + - run: git add -f website/views/partials/built-from-markdown > /dev/null 2>&1 || echo '* * * WARNING - Silently ignoring the fact that there are no HTML partials generated from markdown to include in automated commit...' - run: git -c "user.name=Fleetwood" -c "user.email=github@example.com" commit -am 'AUTOMATED COMMIT - Deployed the latest, including generated collateral such as compiled documentation, modified HTML layouts, and a .sailsrc file that references minified client-side code assets.' # Configure the Heroku app we'll be deploying to