Skip to content

Add Hire us section to docs (#6003) #1696

Add Hire us section to docs (#6003)

Add Hire us section to docs (#6003) #1696

Workflow file for this run

name: Publish to GitHub Pages
env:
YARN_ENABLE_HARDENED_MODE: 0
on:
push:
branches:
- main
paths: docs/**
jobs:
publish:
if: github.repository == 'software-mansion/react-native-reanimated'
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- name: Generate awesome content
run: >-
git config --local user.email "action@github.com"
&& git config --local user.name "GitHub Action"
&& cd docs
&& yarn
&& yarn build
- name: Publish generated content to GitHub Pages
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
FOLDER: docs/build
BRANCH: gh-pages
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}