Skip to content

Commit 475e24a

Browse files
committed
release cli
1 parent b4d51a0 commit 475e24a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,10 +177,10 @@ jobs:
177177
if [ "${{ matrix.goos }}" = "windows" ]; then
178178
# For Windows, create a .zip file
179179
cd release-builds
180-
zip ${{ matrix.archive_name }} release-builds/${{ matrix.binary_name }}
180+
zip ../${{ matrix.archive_name }} ${{ matrix.binary_name }}
181181
else
182182
# For Linux and macOS, create a .tar.gz file
183-
tar -czvf ${{ matrix.archive_name }} -C release-builds/${{ matrix.binary_name }}
183+
tar -czvf ${{ matrix.archive_name }} -C release-builds ${{ matrix.binary_name }}
184184
fi
185185
186186
- name: Upload compressed artifact

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,17 +113,17 @@ See full installation detail from [https://docs.flagger.app/install/flagger-inst
113113

114114
## Install Canary Gate
115115

116-
1. Install Canary Gate CRD
116+
1. Run helm chart install
117117

118118
```bash
119-
kubectl apply -f https://raw.githubusercontent.com/KongZ/canary-gate/main/docs/canarygate-crd.yaml
119+
helm -n canary-gate install canary-gate oci://ghcr.io/kongz/helm-charts/canary-gate --version 0.1.1
120120
```
121121

122-
2. Run helm chart install
122+
If you encounter problems with the installed Custom Resource Definition (CRD) file, you may need to install the CRD prior to continuing with the Helm installation.
123123

124124
```bash
125-
helm repo add piggysec https://piggysec.com
126-
helm -n canary-gate install canary-gate piggysec/canary-gate
125+
kubectl apply -f https://raw.githubusercontent.com/KongZ/canary-gate/main/docs/canarygate-crd.yaml
126+
helm -n canary-gate install canary-gate oci://ghcr.io/kongz/helm-charts/canary-gate --set crd.create=false
127127
```
128128

129129
## Configure Canary Gate

0 commit comments

Comments
 (0)