Build JS Helper Functions #29
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: Build JS Helper Functions | |
on: | |
schedule: | |
- cron: '0 0 * * 0' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21.x | |
- name: Build JS Proto Docs | |
run: ./update-js-helpers.sh | |
working-directory: static/docsbuilder | |
- name: Commit results to Github | |
run: | | |
git pull | |
git config --local user.email "[email protected]" | |
git config --local user.name "olearycrew" | |
git commit -m "Update JS Protocol Docs (from GH Actions)" -a --allow-empty | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} | |