Skip to content

Harden the server pod & update the default server image (#39) #8

Harden the server pod & update the default server image (#39)

Harden the server pod & update the default server image (#39) #8

Workflow file for this run

name: "[Release] Create GitHub Release and Update krew-index"
on:
push:
tags: ['*']
concurrency:
group: ci-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
env:
GO_VERSION: stable
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
check-latest: true
- uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Update new version in krew-index
uses: rajatjindal/[email protected]