diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..e403d9d --- /dev/null +++ b/.github/workflows/deploy.yml @@ -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 }}