Skip to content

Commit

Permalink
do the thing
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandre Lamarre <[email protected]>
  • Loading branch information
alexandreLamarre committed Apr 17, 2024
1 parent 65fd788 commit f2180d5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
- name : Setup up K3d
run : ./.github/workflows/e2e/scripts/install-k3d.sh
- name : Setup up mc
run : ./.github/workflows/e2e/scripts/install-mc.sh
run : |
./.github/workflows/e2e/scripts/install-mc.sh
echo "$PWD/mc" >> $GITHUB_PATH
- name : Setup environment variables
run : echo "K8S_VERSION_FROM_CI=${{ matrix.K8S_VERSION_FROM_CI }}" >> $GITHUB_ENV
- name: Set up Docker Buildx
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e/scripts/install-mc.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ set -x
# TODO : add support for architectures
ARCH=amd64

curl -sL https://dl.min.io/client/mc/release/linux-${ARCH}/mc > /usr/local/bin/mc
chmod +x /usr/local/bin/mc;
curl -sL https://dl.min.io/client/mc/release/linux-${ARCH}/mc > mc
chmod +x mc;

0 comments on commit f2180d5

Please sign in to comment.