Update files from Notion #1
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: Deploy preview branch | |
on: | |
push: | |
branches: | |
- preview | |
jobs: | |
deploy-preview: | |
name: Deploy preview branch | |
runs-on: ubuntu-latest | |
environment: deploy | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Build the site | |
run: ./build.sh | |
- name: Deploy preview to Netlify | |
run: ./deploy.sh --github-action-preview-subdomain | |
env: | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} |