mirror of
https://github.com/eugeny/tabby
synced 2026-08-25 23:37:04 +00:00
Bumps [FirebaseExtended/action-hosting-deploy](https://github.com/firebaseextended/action-hosting-deploy) from 0.10.0 to 0.11.0. - [Release notes](https://github.com/firebaseextended/action-hosting-deploy/releases) - [Commits](https://github.com/firebaseextended/action-hosting-deploy/compare/e2eda2e106cfa35cdbcf4ac9ddaf6c4756df2c8c...500ac625ca2dd40cbd15f7659af953801858032a) --- updated-dependencies: - dependency-name: FirebaseExtended/action-hosting-deploy dependency-version: 0.11.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
40 lines
955 B
YAML
40 lines
955 B
YAML
name: Docs
|
|
on: push
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.actor != 'dependabot[bot]' }}
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Installing Node
|
|
uses: actions/setup-node@v4.4.0
|
|
with:
|
|
node-version: 22
|
|
|
|
- name: Build
|
|
run: |
|
|
sudo apt update && sudo apt install libfontconfig1-dev
|
|
yarn cache clean
|
|
cd app
|
|
yarn
|
|
cd ..
|
|
rm app/node_modules/.yarn-integrity
|
|
yarn
|
|
yarn run build:typings
|
|
yarn run docs
|
|
|
|
env:
|
|
DOCS_PRIVATE_KEY: ${{ secrets.DOCS_PRIVATE_KEY }}
|
|
|
|
- uses: FirebaseExtended/action-hosting-deploy@500ac625ca2dd40cbd15f7659af953801858032a # v0
|
|
with:
|
|
repoToken: '${{ secrets.GITHUB_TOKEN }}'
|
|
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_TABBY_DOCS }}'
|
|
channelId: live
|
|
projectId: tabby-docs
|