Skip to content

Implemented configurable retry logic to full load and cdc; updated docs #10

Implemented configurable retry logic to full load and cdc; updated docs

Implemented configurable retry logic to full load and cdc; updated docs #10

Workflow file for this run

name: Build and Release
# Trigger this workflow only when a tag starting with 'v' is pushed
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
release:
name: Build and Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23.4' # Matches version in go.mod
- name: Build and Package
run: make build
- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: bin/*.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}