add developing readme #108
Workflow file for this run
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: Post merge build step | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
protobuf-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- uses: actions/setup-go@v3 | |
- name: Build | |
run: | | |
make init | |
make golang | |
make ts | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v2.3.0 | |
with: | |
commit_message: Auto build commit | |
branch: master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |