From 697aab874bb35e986813ddee92a2d68b844eec15 Mon Sep 17 00:00:00 2001 From: j-mendez Date: Sat, 2 Mar 2024 19:09:27 -0500 Subject: [PATCH] ci(dagger): fix dagger-cue install --- .github/workflows/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index eda23f5..a20435d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,11 +19,11 @@ jobs: run: | sudo apt update && sudo apt upgrade -y sudo apt install -y curl - curl -L https://dl.dagger.io/dagger-cue/install.sh | VERSION=0.2.232 sh - ./bin/dagger-cue version - - name: Dagger project update - run: ./bin/dagger-cue project update - - name: Dagger do test - run: ./bin/dagger-cue do test --log-format plain + curl -sSLf https://raw.githubusercontent.com/octohelm/wagon/main/install.sh | sh + wagon version + - name: Wagon project update + run: wagon project update + - name: Wagon do test + run: wagon do test --log-format plain # - name: Dagger do deploy # run: dagger do deploy --log-format plain