Skip to content

feat: replace internal http client with resty (#139) #15

feat: replace internal http client with resty (#139)

feat: replace internal http client with resty (#139) #15

Workflow file for this run

name: Release
on:
push:
# run only against tags
tags:
- 'v*'
permissions:
contents: write
jobs:
goreleaser:
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: stable
cache: true
- uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}