This PR fixes a build automation failure introduced in #894. That PR added a new Taskfile (.taskfiles/local.yml), which isn't bundled as a build source in .github/workflows/build.yml. Since it isn't available in build environments, the task command fails because it cannot locate the file. To fix this, there are two options:
Update the CI/CD build workflow to include .taskfiles/local.yml in build environments.
Update Taskfile.yml so that .taskfiles/local.yml is marked as an optional include so that task won't fail when the included file is unavailable.
Since nothing in .taskfiles/local.yml is strictly necessary outside of local development usage, this PR implements the second option.
Relates to #894
Description
This PR fixes a build automation failure introduced in #894. That PR added a new Taskfile (
.taskfiles/local.yml
), which isn't bundled as a build source in.github/workflows/build.yml
. Since it isn't available in build environments, thetask
command fails because it cannot locate the file. To fix this, there are two options:.taskfiles/local.yml
in build environments.Taskfile.yml
so that.taskfiles/local.yml
is marked as an optional include so thattask
won't fail when the included file is unavailable.Since nothing in
.taskfiles/local.yml
is strictly necessary outside of local development usage, this PR implements the second option.