Disable go cache in plugin release workflow #95
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
| # sync-autogen detects drifts of autogenerated contents. | |
| name: sync-autogen | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: Use gsed forcibly | |
| run: sudo ln -s $(which sed) /usr/local/bin/gsed | |
| - name: make sync | |
| run: make sync | |
| - name: git status # for logging | |
| shell: bash | |
| run: git status | |
| - name: git diff # for logging | |
| shell: bash | |
| run: git diff | |
| - name: Validate | |
| shell: bash | |
| run: test -z "$(git status --porcelain)" |