Merge pull request #258 from alan-morey/patch-1 #129
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
# test | |
name: build-docs | |
on: | |
push: | |
branches: [docs] | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- uses: salesforcecli/github-workflows/.github/actions/getGithubUserInfo@main | |
id: github-user-info | |
with: | |
SVC_CLI_BOT_GITHUB_TOKEN: ${{ secrets.SVC_CLI_BOT_GITHUB_TOKEN }} | |
- uses: salesforcecli/github-workflows/.github/actions/gitConfig@main | |
with: | |
username: ${{ steps.github-user-info.outputs.username }} | |
email: ${{ steps.github-user-info.outputs.email }} | |
- name: doc build | |
env: | |
GIT_USER: svc-cli-bot | |
GIT_PASS: ${{ secrets.SVC_CLI_BOT_GITHUB_TOKEN }} | |
working-directory: website | |
run: | | |
yarn install | |
echo "machine github.com login svc-cli-bot password ${{ secrets.SVC_CLI_BOT_GITHUB_TOKEN }}" > ~/.netrc | |
yarn deploy | |
- name: trigger algolia reindex | |
run: | | |
curl -H "Content-Type: application/json" -X POST --user ${{ secrets.CRAWLER_USER_ID }}:${{ secrets.CRAWLER_API_KEY }} "https://crawler.algolia.com/api/1/crawlers/${{ secrets.CRAWLER_ID }}/reindex" |