mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
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:
parent
cd046bf2fc
commit
0b7e07a9fb
1 changed files with 5 additions and 0 deletions
5
.github/workflows/deploy-fleet-website.yml
vendored
5
.github/workflows/deploy-fleet-website.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue