We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e19cfe commit 58fa6a1Copy full SHA for 58fa6a1
.github/workflows/keploy.yml
@@ -35,13 +35,13 @@ jobs:
35
python -m pip install --upgrade pip
36
pip install -r requirements.txt
37
38
- - name: Download Keploy Binary
+ - name: Download and Install Keploy
39
run: |
40
- curl -fsSL -o keploy.tar.gz https://github.com/keploy/keploy/releases/latest/download/keploy-linux-amd64.tar.gz
41
- tar -xzf keploy.tar.gz
+ curl -L https://github.com/keploy/keploy/releases/download/v0.2.7/keploy-linux-amd64 -o keploy
42
chmod +x keploy
43
sudo mv keploy /usr/local/bin/keploy
44
+
45
46
- name: Wait for MongoDB
47
0 commit comments