This commit is contained in:
parent
afa9529afd
commit
1104f6467a
2 changed files with 6 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue