fix: use stringified object when communicating from provider to clien… #8
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 Documentation" | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
install: | |
name: "Install" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "🛎 Checkout" | |
uses: actions/checkout@v4 | |
- name: "🧶 Setup Yarn Dependencies" | |
uses: ./.github/actions/use-yarn-dependencies | |
deploy: | |
name: "Deploy" | |
needs: install | |
runs-on: ubuntu-latest | |
steps: | |
- name: "🛎 Checkout" | |
uses: actions/checkout@v4 | |
- name: "🧶 Setup Yarn Dependencies" | |
uses: ./.github/actions/use-yarn-dependencies | |
- name: "🏗️ Build" | |
run: yarn docs:build | |
- name: "🚀 Deploy" | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.WRITE_REPOS_TOKEN }} | |
publish_dir: ./.docs | |
user_name: agoralabs-bot | |
user_email: [email protected] |