Skip to content

Commit

Permalink
wip: use different eve image
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph-zededa committed Jun 7, 2024
1 parent 91420d9 commit 9198fc5
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions .github/actions/setup-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,16 +73,10 @@ runs:
shell: bash
- name: Setup eve version
run: |
image=${{ inputs.eve_image }}
if [[ -n "$image" && "$image" == *:* ]]; then
echo "Setting up eve image ${image}"
eve_pr_registry=$(echo "$image" | cut -d ':' -f 1)
eve_pr=$(echo "$image" | cut -d ':' -f 2 | cut -d "-" -f1)
./eden config set default --key=eve.registry --value="$eve_pr_registry"
./eden config set default --key=eve.tag --value="$eve_pr"
else
echo "Skipping setting up eve image ${image}"
fi
eve_pr_registry="christophzededa/eve-test"
eve_pr="latest"
./eden config set default --key=eve.registry --value="$eve_pr_registry"
./eden config set default --key=eve.tag --value="$eve_pr"
shell: bash
working-directory: "./eden"
- name: Setup ext4
Expand Down

0 comments on commit 9198fc5

Please sign in to comment.