Skip to content

Commit

Permalink
[from now] 2024/11/21 23:13:26
Browse files Browse the repository at this point in the history
diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml
index c30d96e..37b079f 100644
--- a/.github/workflows/e2e.yml
+++ b/.github/workflows/e2e.yml
@@ -41,7 +41,7 @@ jobs:
           BIN_DIR: ${{ github.workspace }}/tools/
         run: |
           mkdir -p $BIN_DIR
-          curl -sSLo "$BIN_DIR/kubectl" https://dl.k8s.io/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl"
+          curl -sSLo "$BIN_DIR/kubectl" "https://dl.k8s.io/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl"
           chmod +x "$BIN_DIR/kubectl"
           echo "$BIN_DIR" >> "$GITHUB_PATH"
       - name: Setup kind ${{ matrix.k8s-version }}
  • Loading branch information
h3poteto committed Nov 21, 2024
1 parent 53f6928 commit 7a976d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
BIN_DIR: ${{ github.workspace }}/tools/
run: |
mkdir -p $BIN_DIR
curl -sSLo "$BIN_DIR/kubectl" https://dl.k8s.io/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl"
curl -sSLo "$BIN_DIR/kubectl" "https://dl.k8s.io/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl"
chmod +x "$BIN_DIR/kubectl"
echo "$BIN_DIR" >> "$GITHUB_PATH"
- name: Setup kind ${{ matrix.k8s-version }}
Expand Down

0 comments on commit 7a976d7

Please sign in to comment.