Skip to content

Merge pull request #38 from ca-gip/fix-crd #34

Merge pull request #38 from ca-gip/fix-crd

Merge pull request #38 from ca-gip/fix-crd #34

Workflow file for this run

name: release
on:
push:
tags:
- "*"
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: git fetch --force --tags
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: latest
args: release --clean
workdir: ./cmd/operator
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}