Skip to content

fix(galer): make outgoing requests captured (#142) #130

fix(galer): make outgoing requests captured (#142)

fix(galer): make outgoing requests captured (#142) #130

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
permissions:
contents: write
packages: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
check-latest: true
go-version-file: 'go.mod'
cache-dependency-path: '**/go.sum'
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: goreleaser/goreleaser-action@v6
with:
args: release --clean
version: latest
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"