Fix Dagger CLI install path in CI workflows
Some checks are pending
CI / ci (push) Waiting to run

This commit is contained in:
Philip Peterson 2026-08-25 14:17:44 -08:00
parent afa9529afd
commit 1104f6467a
2 changed files with 6 additions and 2 deletions

View file

@ -18,7 +18,9 @@ jobs:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
- name: Install Dagger CLI - 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) - name: Run CI (Dagger)
run: dagger call ci run: dagger call ci

View file

@ -18,7 +18,9 @@ jobs:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
- name: Install Dagger CLI - 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) - name: Run CI (Dagger)
run: dagger call ci run: dagger call ci