Skip to content

Commit

Permalink
Add workflow to trigger netlify deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
eddumelendez committed Jun 28, 2024
1 parent 92b5a6c commit 7bcda32
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "Deploy"

on:
push:
branches: [ main ]
paths-ignore:
- 'README.md'
- '.github/CODEOWNERS'

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Deploy
run: |
curl -X POST -d {} ${{ secrets.NETLIFY_WEBHOOK_URL }}

0 comments on commit 7bcda32

Please sign in to comment.