Skip to content

Basic data integration tutorial #86

Basic data integration tutorial

Basic data integration tutorial #86

name: NetlifyPreview
on:
pull_request_target:
types: [labeled, synchronize]
jobs:
add-preview:
runs-on: ubuntu-latest
# This workflow accesses secrets and checks out a PR, so only run if labelled
# https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Build Resources
uses: ./.github/actions/buildresources
with:
jb-cache: false
publish-to-gh: false
jb-save: false
- name: Deploy Website Preview
if: always()
uses: nwtgck/[email protected]
with:
publish-dir: './book/_build/html'
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: "Deploy from GitHub Actions"
alias: deploy-preview-${{ github.event.number }}
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
timeout-minutes: 1