Bump stefanzweifel/git-auto-commit-action from 7.0.0 to 7.1.0 #275
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: Render README | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| jobs: | |
| yaml: | |
| name: Render README | |
| runs-on: ubuntu-24.04 | |
| defaults: | |
| run: | |
| working-directory: app | |
| steps: | |
| - uses: actions/checkout@v6.0.1 | |
| - uses: actions/setup-go@v6.0.0 | |
| with: | |
| go-version: "1.25" | |
| # Caching go modules to speed up the run | |
| - uses: actions/cache@v4.3.0 | |
| with: | |
| path: ~/go/pkg/mod | |
| key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
| restore-keys: | | |
| ${{ runner.os }}-go- | |
| - name: Build | |
| run: make build | |
| - name: GermanTechPodcasts Convert JSON to README | |
| run: ./GermanTechPodcasts convertJsonToReadme --json-directory ../generated --readme-template ../assets/README.template --readme-output ../README.md |