-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Now that hosting is in vercel, we can remove redundant github…
… pages actions" (#1484) Signed-off-by: Joshua Fernandes <[email protected]>
- Loading branch information
1 parent
9a27050
commit 953618b
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Publish main branch docs to GitHub Pages | ||
# NOTE that we publish `main` to github pages branch: gh-pages | ||
# and previews only are handled by vercel | ||
|
||
on: | ||
push: | ||
branches: main | ||
|
||
jobs: | ||
publish-docs-to-gh-pages: | ||
name: Publish docs to `./` directory of `gh-pages` branch | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: '.nvmrc' | ||
cache: 'yarn' | ||
|
||
- name: Install npm dependencies | ||
run: yarn --immutable | ||
|
||
- name: Run build script | ||
run: yarn build | ||
|
||
- name: Deploy to `./` directory of `gh-pages` branch | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./build | ||
keep_files: true |