Skip to content

Hotfix: Fix search_total_indexing_time metric type (#958) #15

Hotfix: Fix search_total_indexing_time metric type (#958)

Hotfix: Fix search_total_indexing_time metric type (#958) #15

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
release-binaries:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Build binaries
run: |
make build-all-binaries
ls -la
ls -la .build/
./package-github-binaries.sh
ls -la dist/
- name: Add binaries to release
uses: ncipollo/release-action@v1
with:
artifacts: "dist/*"
allowUpdates: true
omitBodyDuringUpdate: true