1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-10-06 01:17:41 +03:00
tabby/.github/workflows/docs.yml

39 lines
849 B
YAML
Raw Normal View History

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