Skip to content

Bump go.opentelemetry.io/otel/sdk/metric from 1.31.0 to 1.32.0 #448

Bump go.opentelemetry.io/otel/sdk/metric from 1.31.0 to 1.32.0

Bump go.opentelemetry.io/otel/sdk/metric from 1.31.0 to 1.32.0 #448

Workflow file for this run

name: go
on:
push:
branches:
- "master"
tags:
- "v*"
pull_request:
jobs:
go:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.21"
- name: Build
run: go build -v ./cmd/vanity-ssh-keygen/
- name: Test
run: go test -v ./...
- name: Lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
- name: Login to Docker Hub
uses: docker/login-action@v3
if: success() && startsWith(github.ref, 'refs/tags/v')
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB }}
- name: Release
uses: goreleaser/goreleaser-action@v6
if: success() && startsWith(github.ref, 'refs/tags/v')
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
KO_DOCKER_REPO: docker.io/${{ secrets.DOCKERHUB_USERNAME }}/vanity-ssh-keygen