fix typo to test deployment #11
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: facebook/idb/build_and_deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy-website: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16.14.0 | |
- name: Deploying to GitHub Pages | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Website Deployment Script" | |
echo "machine github.com login docusaurus-bot password ${{ secrets.GITHUB_TOKEN }}" > ~/.netrc | |
echo "Deploying website..." | |
cd website && yarn install && GIT_USER=docusaurus-bot USE_SSH=false yarn deploy |