Skip to content

Commit

Permalink
Merge pull request #86 from grafana/automated-build
Browse files Browse the repository at this point in the history
build on CI
  • Loading branch information
zeitlinger authored Sep 11, 2024
2 parents f346243 + a5c3bec commit cb5424d
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Release

on:
push:
tags:
- "v*.*.*"

permissions:
contents: read
id-token: write

jobs:
build:
runs-on: ubuntu-latest

steps:
- id: checkout
uses: actions/checkout@v4

- id: push-to-dockerhub
uses: grafana/shared-workflows/actions/build-push-to-dockerhub@main
with:
repository: grafana/otel-lgtm
context: docker
push: true
platforms: linux/amd64,linux/arm64
tags: |-
type=match,pattern=v(.*),group=1
latest

0 comments on commit cb5424d

Please sign in to comment.