diff --git a/.github/workflows/deploy-website.yml b/.github/workflows/deploy-website.yml new file mode 100644 index 0000000..311ca2f --- /dev/null +++ b/.github/workflows/deploy-website.yml @@ -0,0 +1,17 @@ +name: Deploy Website + +on: + push: + branches: + - main + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@4 + + - name: Trigger Netlify build + run: | + curl -X POST -d {} ${secrets.WEBSITE_BUILD_HOOK} # TODO: Replace with the organization's build hook secret