Skip to content

http_proxy: allow specifying middleware prometheus opts #26

http_proxy: allow specifying middleware prometheus opts

http_proxy: allow specifying middleware prometheus opts #26

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set version env variables
run: |
cat .version >> $GITHUB_ENV
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Docker login
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "${{env.GO_VERSION}}"
- name: Release
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: "${{env.GORELEASER_VERSION}}"
args: release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAP_GITHUB_TOKEN: ${{ secrets.TAP_GITHUB_TOKEN }}