Skip to content

Bump metal-api to version v0.27.0 #44

Bump metal-api to version v0.27.0

Bump metal-api to version v0.27.0 #44

Workflow file for this run

name: Auto Generate
on:
push:
branches:
- auto-generate/*
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: false
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
args: -p bugs -p unused
- name: Generate
run: |
go install github.com/mikefarah/yq/v4@latest
make
- name: Push
run: |
if ! git diff --exit-code; then
git config --global user.name "auto-build"
git config --global user.email "[email protected]"
git add .
git commit -m "Bump to version $(cat VERSION)"
git push
fi