feat: add Airnode and OIS versions to version tables (#654) #195
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@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
cache: 'yarn' | |
- run: yarn 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 |