Skip to content

initial

initial #1

Workflow file for this run

name: 'Sync with MindStudio'
on:
push:
branches:
- main
secrets:
HOOK_URL:
required: true
workflow_dispatch:
secrets:
HOOK_URL:
required: true
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Make POST request to sync functions
run: |
curl -X POST -H "Content-Type: application/json" -d '{}' ${{ secrets.HOOK_URL }}