Skip to content

UPdated the docs

UPdated the docs #20

Workflow file for this run

name: goreleaser
on:
push:
tags:
- 'v*'
permissions:
contents: write
id-token: write
jobs:
goreleaser:
runs-on: ubuntu-latest
environment: goreleaser
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22.0
- name: Install Cosign
uses: sigstore/cosign-installer@main
- name: Set the value
id: set_environment
run: |
set -xe
sudo apt install jq -y
echo "CURR_DATE=$(date '+%d-%m-%Y')" >> $GITHUB_ENV
echo "CURR_VER=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV
ksctl_core=$(curl -sSfL https://api.github.com/repos/ksctl/ksctl/releases/latest)
echo "KSCTL_CORE=$(echo $ksctl_core | jq -r '.tag_name')" >> $GITHUB_ENV
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DATE: ${{ env.CURR_DATE }}
VERSION: ${{ env.CURR_VER }}
OCIVERSION: ${{ env.KSCTL_CORE }}