Skip to content

refactor(search): use url.Values for query string encoding #10

refactor(search): use url.Values for query string encoding

refactor(search): use url.Values for query string encoding #10

Workflow file for this run

---
name: Release
on:
push:
tags:
- 'v*'
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.25
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Get dependencies
run: |
go get -v -t ./...
- name: Test
run: |
go test -v ./...
- name: Build
run: |
./build.sh build
- run: |
set -x
tag_name="${GITHUB_REF##*/}"
gh release create "$tag_name" build/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}