From aaf338d433be5d4f608dd2731ad85dfb1b8dbd10 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 | 9 +++------ dagger.cue => wagon.cue | 0 2 files changed, 3 insertions(+), 6 deletions(-) rename dagger.cue => wagon.cue (100%) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index eda23f5..962a39b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,11 +19,8 @@ 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 + - name: Wagon do test + run: wagon do test # - name: Dagger do deploy # run: dagger do deploy --log-format plain diff --git a/dagger.cue b/wagon.cue similarity index 100% rename from dagger.cue rename to wagon.cue