Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/integration-per-language.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
echo "imagename=${{ steps.kind-registry.outputs.local-registry }}/testapp" >> "$GITHUB_ENV"
# Runs Helm to create manifest files
- name: Bake deployment
uses: azure/k8s-bake@v3.0.4
uses: azure/k8s-bake@v4.0.0
with:
renderEngine: "helm"
helmChart: ./langtest/charts
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
run: |
echo "imagename=${{ steps.kind-registry.outputs.local-registry }}/testapp" >> "$GITHUB_ENV"
- name: Bake deployment
uses: azure/k8s-bake@v3.0.4
uses: azure/k8s-bake@v4.0.0
id: bake
with:
renderEngine: "kustomize"
Expand Down
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ install() {
OS="linux"
elif [[ "$OSTYPE" == "darwin"* ]]; then
OS="darwin"
elif [[ "$OSTYPE" == "win32" || "$OSTYPE" == "msys" ]]; then
elif [[ "$OSTYPE" == "win32" || "$OSTYPE" == "msys" || "$OSTYPE" == "cygwin" ]]; then
OS="windows"
else
echo "Draft CLI isn't supported for your platform - $OSTYPE"
Expand Down
Loading