From 488f4d258adf6ba9852e1d3bff91649ccd7e8729 Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Thu, 28 Aug 2025 10:06:34 +0300 Subject: [PATCH] Add mise task to trigger deploy --- mise.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mise.toml b/mise.toml index 29a40c56..cb9e6b59 100644 --- a/mise.toml +++ b/mise.toml @@ -154,6 +154,12 @@ run = 'rm data/music_library_prod*' description = 'Run HTTP tests against production' run = 'hurl --test test/prod.hurl' +[tasks."prod:trigger-deploy"] +description = 'Trigger a deploy on production infra' +run = """ +curl --request GET "$COOLIFY_WEBHOOK" --header "Authorization: Bearer $COOLIFY_TOKEN" +""" + # GIT TOOLING [tasks.static-checks-hook]