Bump k8s.io/cli-runtime from 0.31.2 to 0.32.1 (#7) #39
This file contains 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: ketall CI | |
on: | |
push: | |
branches: | |
- '*' | |
tags: | |
- 'v*.*.*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go 1.23.2 | |
uses: actions/setup-go@v5 | |
id: go | |
with: | |
go-version: 1.23.2 | |
- name: Verify go.mod is sane | |
run: go mod tidy && git diff --no-patch --exit-code | |
- name: Golangci-lint | |
uses: golangci/[email protected] | |
- name: Run unit tests | |
run: go test ./... | |
- name: GoReleaser Build Snapshot | |
if: "!contains(github.ref, 'tags')" | |
uses: goreleaser/goreleaser-action@v6 | |
with: | |
version: "~> v2" | |
args: release --snapshot --clean | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: GoReleaser Release | |
if: contains(github.ref, 'tags') | |
uses: goreleaser/goreleaser-action@v6 | |
with: | |
version: latest | |
args: release --clean | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Update new version in krew-index | |
if: contains(github.ref, 'tags') | |
uses: rajatjindal/[email protected] | |
with: | |
krew_template_file: .krew.yaml |