feat/init-ci #5
Loading…
Reference in a new issue
No description provided.
Delete branch "feat/init-ci"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
10843df4a1a4b7db054ash:so PATH override actually applies 0305c6111dsh:var and target the fork's main branchTwo independent fixes on top of the previous attempt: - **Taskfile — inline bun resolution.** The earlier `env: PATH: {sh: ...}` at the top level did not survive the `devbox run -- task` chain (previous run kept SIGILLing at exit 132 on `bun install`). Devbox enters a Nix shell that prepends its own store bins to PATH, and Task's env-level override is either dropped or overridden by that shell. Replace the PATH trick with a `vars.BUN` computed via `sh:` that resolves once — `$HOME/.bun/bin/bun` if the baseline is installed, plain `bun` otherwise — then inject `{{.BUN}}` at every bun call site. This forces the absolute path into the argv passed to sh -c, so devbox's PATH can no longer win. - **Cache action — target `@main`.** `code.forgejo.org/actions/cache@v4` still emitted the GHES-version warning on the last run, meaning that tag mirrors upstream unmodified. `@main` is where the Forgejo team's patches actually land — pointing there gets us the ACTIONS_CACHE_URL passthrough that skips the GHES probe.View command line instructions
Checkout
From your project repository, check out a new branch and test the changes.Merge
Merge the changes and update on Forgejo.Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.