2019-08-27 04:03:36 +08:00
|
|
|
name: Docs
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
|
|
build:
|
2021-10-04 18:37:44 +08:00
|
|
|
runs-on: ubuntu-latest
|
2021-05-25 05:30:05 +08:00
|
|
|
if: ${{ github.actor != 'dependabot[bot]' }}
|
2019-08-27 04:03:36 +08:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-02 12:18:24 +08:00
|
|
|
uses: actions/checkout@v3
|
2021-05-16 19:53:13 +08:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2019-08-27 04:03:36 +08:00
|
|
|
|
|
|
|
- name: Installing Node
|
2022-02-25 12:13:28 +08:00
|
|
|
uses: actions/setup-node@v3.0.0
|
2019-08-27 04:03:36 +08:00
|
|
|
with:
|
2021-05-17 00:58:46 +08:00
|
|
|
node-version: 14
|
2019-08-27 04:03:36 +08:00
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
2019-10-12 06:25:08 +08:00
|
|
|
yarn cache clean
|
2019-10-12 06:10:22 +08:00
|
|
|
cd app
|
|
|
|
yarn
|
|
|
|
cd ..
|
|
|
|
rm app/node_modules/.yarn-integrity
|
2019-08-27 04:03:36 +08:00
|
|
|
yarn
|
2021-03-04 16:42:46 +08:00
|
|
|
yarn run build:typings
|
2019-08-27 04:03:36 +08:00
|
|
|
yarn run docs
|
|
|
|
|
|
|
|
env:
|
|
|
|
DOCS_PRIVATE_KEY: ${{ secrets.DOCS_PRIVATE_KEY }}
|
2021-09-25 06:36:21 +08:00
|
|
|
|
|
|
|
- uses: FirebaseExtended/action-hosting-deploy@v0
|
|
|
|
with:
|
|
|
|
repoToken: '${{ secrets.GITHUB_TOKEN }}'
|
|
|
|
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_TABBY_DOCS }}'
|
|
|
|
channelId: live
|
|
|
|
projectId: tabby-docs
|