Skip to content

Bump rajatjindal/krew-release-bot from 0.0.46 to 0.0.47 (#9) #36

Bump rajatjindal/krew-release-bot from 0.0.46 to 0.0.47 (#9)

Bump rajatjindal/krew-release-bot from 0.0.46 to 0.0.47 (#9) #36

Workflow file for this run

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