fix(Makefile): use correct git shell path and add semicolons #1496
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: Generate docs and format | |
on: | |
push: | |
branches: | |
- master | |
pull_request_target: | |
jobs: | |
postprocessing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.head_ref }} | |
- uses: nixbuild/nix-quick-install-action@v30 | |
- run: nix develop -i -c bash -c 'make doc' | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "Auto generate docs" | |
- name: "Format with Stylua" | |
uses: JohnnyMorganz/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
version: v0.15.1 | |
args: . | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "Format with stylua" |