Skip to content

build(deps): bump @swc/core from 1.3.64 to 1.3.66 #227

build(deps): bump @swc/core from 1.3.64 to 1.3.66

build(deps): bump @swc/core from 1.3.64 to 1.3.66 #227

name: Build docs preview
# This job builds and deploys documenation to github pages.
# It runs on every push to master with a change in the docs folder.
on:
pull_request:
paths:
- "docs/**"
- .github/workflows/build-docs-preview.yaml
jobs:
Build-preview:
runs-on: ubuntu-latest
permissions:
pull-requests: write # for thollander/actions-comment-pull-request to leave PR comments
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0
path: "."
- name: Compute diff 📜
uses: technote-space/[email protected]
id: git_diff
with:
PATTERNS: |
docs/**/*.*
FILES: |
package.json
yarn.lock
- name: Setup Protoc 👷
if: env.GIT_DIFF
uses: arduino/setup-protoc@v1
with:
version: "3.x"
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Node.js 🔧
if: env.GIT_DIFF
uses: actions/setup-node@v3
with:
node-version: "16.x"
cache: 'yarn'
cache-dependency-path: |
yarn.lock
- name: Install 🔨
if: env.GIT_DIFF
run: yarn install --immutable
- name: Build packages 🔧
if: env.GIT_DIFF
run: yarn build
- name: Build docs 🔧
if: env.GIT_DIFF
run: yarn build-docs
- name: Deploy preview to Netlify 🚀
if: env.GIT_DIFF
id: deploy-preview
uses: nwtgck/[email protected]
with:
publish-dir: ./docs/build
deploy-message: "Deploy from GitHub Actions"
enable-commit-comment: false
enable-pull-request-comment: false
overwrites-pull-request-comment: false
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
- name: Comment preview URL 🗨️
if: env.GIT_DIFF
uses: thollander/actions-comment-pull-request@v2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
message: '👀 Docs preview available here: ${{ steps.deploy-preview.outputs.deploy-url }}'
comment_tag: '👀 Docs preview available here: '