This repository has been archived by the owner on Nov 22, 2024. It is now read-only.
Avoid crashing the app if the app delegate is written in Swift and do… #3405
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: Docs | |
# This action runs on push to 'main' | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
persist-credentials: false | |
- name: Install and Build | |
run: | | |
yarn | |
yarn build | |
working-directory: website/ | |
- name: Deploy to GitHub Pages | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: website/build | |
clean: true | |
clean-exclude: | | |
.circleci | |
commit-message: "[ci skip] Deploying documentation update" |