Replies: 1 comment
|
That The reason this works fine in GitHub Actions but bites you locally with act is that GitHub Actions runs in a disposable container where there's nothing important to delete. With act, it mounts your actual local repo (or a copy of it), so those files are your real files. A few ways to deal with this:
The |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Act deleted my all the ignored files, folders like
.env.xxetc. Before it was working fine.Any solution ?
All reactions