🎉 First commit

This commit is contained in:
Paillat
2025-12-08 13:28:28 +01:00
committed by Paillat-dev
commit dd77e3d433
26 changed files with 2294 additions and 0 deletions

15
.github/workflows/deploy.yaml vendored Normal file
View File

@@ -0,0 +1,15 @@
name: Call Endpoint
on: workflow_call
jobs:
call-endpoint:
runs-on: ubuntu-latest
steps:
- name: Check if DEPLOY_URL is set and call endpoint
run: |
if [ -n "${{ secrets.DEPLOY_URL }}" ]; then
curl -X POST -H "Content-Type: application/json" -d '{"text":"Image updated"}' "${{ secrets.DEPLOY_URL }}"
else
echo "DEPLOY_URL is not set. Skipping."
fi