From 1104f6467a469914cd344e6d9d4021d5bf652c5a Mon Sep 17 00:00:00 2001 From: Philip Peterson <1326208+philip-peterson@users.noreply.github.com> Date: Tue, 25 Aug 2026 14:17:44 -0800 Subject: [PATCH] Fix Dagger CLI install path in CI workflows --- .gitea/workflows/ci.yml | 4 +++- .github/workflows/ci.yml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 181d1e53..4ebc3703 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -18,7 +18,9 @@ jobs: - uses: actions/checkout@v6 - name: Install Dagger CLI - run: curl -fsSL https://dl.dagger.io/dagger/install.sh | sh + run: | + curl -fsSL https://dl.dagger.io/dagger/install.sh | BIN_DIR="$HOME/.local/bin" sh + echo "$HOME/.local/bin" >> "$GITHUB_PATH" - name: Run CI (Dagger) run: dagger call ci diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 181d1e53..4ebc3703 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,9 @@ jobs: - uses: actions/checkout@v6 - name: Install Dagger CLI - run: curl -fsSL https://dl.dagger.io/dagger/install.sh | sh + run: | + curl -fsSL https://dl.dagger.io/dagger/install.sh | BIN_DIR="$HOME/.local/bin" sh + echo "$HOME/.local/bin" >> "$GITHUB_PATH" - name: Run CI (Dagger) run: dagger call ci