Skip to content

Published the client #5

Published the client

Published the client #5

Workflow file for this run

name: Publishing
on:
push:
branches-ignore: [ master ]
jobs:
publish:
name: Publish the client to the public registry
runs-on: ubuntu-22.04
env:
VERSION: ${{ github.ref_name }}
strategy:
matrix:
go: [ '1.18' ]
steps:
- uses: actions/checkout@v2
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: go get .
- name: Publish
run: |
go mod tidy
GOPROXY=proxy.golang.org go list -m github.com/manticoresoftware/manticoresearch-go@$VERSION