Problem
Build embedded / aarch64 (ubuntu-latest) fails in Release v1.0.1:
/home/runner/work/_temp/run-maturin-action.sh: line 21: dnf: command not found
The process '/usr/bin/docker' failed with exit code 127
The aarch64 manylinux_2_28 container does not have dnf in PATH. The before-script falls through with exit code 127 (bash "command not found"), which docker propagates.
Fix
Make before-script fall through dnf → yum → apt-get so protoc installs regardless of which package manager is available.
Acceptance criteria
Build embedded / aarch64 (ubuntu-latest) passes in Release workflow
Problem
Build embedded / aarch64 (ubuntu-latest)fails in Release v1.0.1:The aarch64 manylinux_2_28 container does not have
dnfin PATH. The before-script falls through with exit code 127 (bash "command not found"), which docker propagates.Fix
Make before-script fall through
dnf→yum→apt-getso protoc installs regardless of which package manager is available.Acceptance criteria
Build embedded / aarch64 (ubuntu-latest)passes in Release workflow