Ignore cert errors on deploy
Some checks failed
Build and Test / determine_version (push) Successful in 6s
Build and Test / build_and_push (push) Successful in 1m15s
Build and Test / test (push) Successful in 2s
Build and Test / deploy_production (push) Failing after 3s

This commit is contained in:
2025-03-31 15:31:25 -07:00
parent cd397b1d15
commit 603a6a0887

View File

@@ -101,7 +101,7 @@ jobs:
}'
- name: Stop App
run: |
curl -X 'POST' \
curl -k -X 'POST' \
'https://caperren.com:444/api/v2.0/app/stop' \
-H 'accept: */*' \
-H 'Authorization: Bearer ${{ secrets.TRUENAS_CAPERRENCOM_API_KEY }}' \
@@ -111,7 +111,7 @@ jobs:
- name: Stop Existing App
- name: Start App
run: |
curl -X 'POST' \
curl -k -X 'POST' \
'https://caperren.com:444/api/v2.0/app/stop' \
-H 'accept: */*' \
-H 'Authorization: Bearer ${{ secrets.TRUENAS_CAPERRENCOM_API_KEY }}' \