- Updated Cameras #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: API Deploy | |
on: | |
push: | |
branches: | |
- "dev" | |
- "main" | |
paths: | |
- "deploy/*.json" | |
jobs: | |
build_dev: | |
if: github.ref == 'refs/heads/dev' | |
name: Netlify Webhook - Dev | |
runs-on: ubuntu-latest | |
steps: | |
- name: Curl request | |
run: curl -X POST -d {} ${{ secrets.NETLIFY_WEBHOOK_DEV }} | |
build_production: | |
if: github.ref == 'refs/heads/main' | |
name: Netlify Webhook - Production | |
runs-on: ubuntu-latest | |
steps: | |
- name: Curl request | |
run: curl -X POST -d {} ${{ secrets.NETLIFY_WEBHOOK_PRODUCTION }} |