cron fix again - missing \
(#1045)
This commit is contained in:
parent
9efa429294
commit
9842aaaf6a
2 changed files with 2 additions and 2 deletions
2
.github/workflows/cron-bookingReminder.yml
vendored
2
.github/workflows/cron-bookingReminder.yml
vendored
|
@ -17,7 +17,7 @@ jobs:
|
||||||
if: ${{ env.APP_URL && env.CRON_API_KEY }}
|
if: ${{ env.APP_URL && env.CRON_API_KEY }}
|
||||||
run: |
|
run: |
|
||||||
curl ${{ secrets.APP_URL }}/api/cron/bookingReminder \
|
curl ${{ secrets.APP_URL }}/api/cron/bookingReminder \
|
||||||
-X POST
|
-X POST \
|
||||||
-H 'content-type: application/json' \
|
-H 'content-type: application/json' \
|
||||||
-H 'authorization: ${{ secrets.CRON_API_KEY }}' \
|
-H 'authorization: ${{ secrets.CRON_API_KEY }}' \
|
||||||
--fail
|
--fail
|
||||||
|
|
2
.github/workflows/cron-downgradeUsers.yml
vendored
2
.github/workflows/cron-downgradeUsers.yml
vendored
|
@ -17,7 +17,7 @@ jobs:
|
||||||
if: ${{ env.APP_URL && env.CRON_API_KEY }}
|
if: ${{ env.APP_URL && env.CRON_API_KEY }}
|
||||||
run: |
|
run: |
|
||||||
curl ${{ secrets.APP_URL }}/api/cron/downgradeUsers \
|
curl ${{ secrets.APP_URL }}/api/cron/downgradeUsers \
|
||||||
-X POST
|
-X POST \
|
||||||
-H 'content-type: application/json' \
|
-H 'content-type: application/json' \
|
||||||
-H 'authorization: ${{ secrets.CRON_API_KEY }}' \
|
-H 'authorization: ${{ secrets.CRON_API_KEY }}' \
|
||||||
--fail
|
--fail
|
||||||
|
|
Loading…
Reference in a new issue