chore(deps): update dependency @api3/chains to ^10.2.4 (#837) #322
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: Deploy Live Site to Firebase Hosting | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build_and_deploy_live_site: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'pnpm' | |
- run: pnpm install | |
- name: Build Docs | |
env: | |
NODE_OPTIONS: "--max_old_space_size=4096" | |
run: npm run docs:build | |
- uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
repoToken: '${{ secrets.GITHUB_TOKEN }}' | |
firebaseServiceAccount: '${{ secrets.FIREBASE_SA_VITEPRESS_DOCS }}' | |
channelId: live |