lewisdale.dev/.gitea/workflows/trigger-deploy.yml
Workflow config file is invalid. Please check your config file: yaml: line 10: mapping values are not allowed in this context
2024-10-19 15:59:44 +01:00

11 lines
283 B
YAML

name: Trigger deploy
on:
schedule:
- cron: '0 * * * *'
jobs:
trigger-deploy:
runs-on: ubuntu-latest
steps:
- name: Trigger deploy
run: curl -X GET ${{ secrets.DEPLOY_ENDPOINT }} -H "Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}"
shell: bash