We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a72e7e4 commit b165e8dCopy full SHA for b165e8d
.github/workflows/Web.yaml
@@ -25,8 +25,10 @@ jobs:
25
cache: "pnpm"
26
27
- name: UseFile
28
- run: sed -i 's/SD_BACKEND_FILE=false/SD_BACKEND_FILE=true/' .env &&
29
- curl -o public/mock.json http://80.158.108.251:8000/v2/components &&
+ run: |
+ grep -q 'SD_BACKEND_FILE=false' .env && sed -i 's/SD_BACKEND_FILE=false/SD_BACKEND_FILE=true/' .env
30
+ grep -q 'SD_BACKEND_V2=false' .env && sed -i 's/SD_BACKEND_V2=false/SD_BACKEND_V2=true/' .env
31
+ curl -o public/mock.json http://80.158.108.251:8000/v2/components
32
curl -o public/event.json http://80.158.108.251:8000/v2/incidents
33
34
- name: Build
0 commit comments