Skip to content

Disable go cache in plugin release workflow #95

Disable go cache in plugin release workflow

Disable go cache in plugin release workflow #95

Workflow file for this run

# 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)"