Website: Ignore top level gitignore when deploying (#5549)

* Website: Ignore top level gitignore when deploying

* Update deploy-fleet-website.yml
This commit is contained in:
Mike McNeil 2022-05-03 21:05:19 -05:00 committed by GitHub
parent cd046bf2fc
commit 0b7e07a9fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -49,6 +49,11 @@ jobs:
# > Turns out there's a similar issue with how eslint plugins are looked up, so we
# > delete the top level .eslintrc file too.
- run: rm -f .eslintrc.js
# > And, as a change to the top-level fleetdm/fleet .gitignore on May 2, 2022 revealed,
# > we also need to delete the top level .gitignore file too, so that its rules don't
# > interfere with the committing and force-pushing we're doing as part of our deploy
# > script here. For more info, see: https://github.com/fleetdm/fleet/pull/5549
- run: rm -f .gitignore
# Download dependencies (including dev deps)
- run: cd website/ && npm install