feat(decoder): parse proto file to support field name and enum display #20
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: GitHub Pages | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- run: | | |
git config user.name "Rex Zeng" | |
git config user.email "[email protected]" | |
git checkout -b gh-pages | |
npm install -g pnpm | |
pnpm i | |
pnpm build:pages | |
echo "proto-message-helper.js.org" > docs/CNAME | |
git add -A | |
git commit -m Pages | |
git remote set-url origin "https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" | |
git push -f origin gh-pages | |
env: | |
GITHUB_TOKEN: ${{ secrets.github_token }} |