chore(taskfile): add server binary build update client binary build #266
Workflow file for this run
This file contains hidden or 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: CLI and API partials checker | |
| on: | |
| push: | |
| paths: | |
| - ".github/workflows/docs_cli_and_api_partials_checker.yml" | |
| - "client/cmd/**" | |
| - "server/**" | |
| workflow_dispatch: | |
| jobs: | |
| check: | |
| name: Partials checker | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: server/go.mod | |
| - name: Install Task | |
| uses: arduino/setup-task@v2 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set up git config | |
| uses: ./.github/actions/set-up-git-config | |
| - name: Regen partials | |
| run: task docs:gen |