Skip to content

feat(decoder): parse proto file to support field name and enum display #20

feat(decoder): parse proto file to support field name and enum display

feat(decoder): parse proto file to support field name and enum display #20

Workflow file for this run

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 }}