ci: call the apt helper from the workflow's working directory (#10832)

The e2e workflow sets defaults.run.working-directory: docker, so the call I
added resolved to docker/docker/apt-install and every FUSE Mount run has
failed with 'sudo: docker/apt-install: command not found' since it merged.
This commit is contained in:
Chris Lu
2026-08-19 00:46:32 -07:00
committed by GitHub
parent baead6901c
commit 3b18a635df
+1 -1
View File
@@ -64,7 +64,7 @@ jobs:
sudo rm -f /etc/apt/sources.list.d/azure-cli.list /etc/apt/sources.list.d/microsoft-prod.list
# Same helper the e2e image installs through: the runner's own list is
# azure-only too, and an outage there fails this step outright.
sudo docker/apt-install fuse
sudo ./apt-install fuse
# Verify FUSE installation
echo "FUSE version: $(fusermount --version 2>&1 || echo 'fusermount not found')"