fixes #21: use merkelize in getRootHash (#24) #17
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: Update Deployment | |
on: | |
push: | |
branches: | |
- "main" | |
jobs: | |
publish: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '20' | |
- name: Install dependencies | |
run: cd client && npm install | |
- name: Remove .gitignore | |
run: rm -rf client/.gitignore | |
- name: Generate your content | |
run: npm run build:client | |
- name: Publish current workdir (which contains generated content) to GitHub Pages | |
uses: rayluo/[email protected] | |
with: | |
source-directory: client | |
target-branch: gh-pages |