Skip to content

Bump github.com/grafana/grafana-plugin-sdk-go from 0.251.0 to 0.252.0… #74

Bump github.com/grafana/grafana-plugin-sdk-go from 0.251.0 to 0.252.0…

Bump github.com/grafana/grafana-plugin-sdk-go from 0.251.0 to 0.252.0… #74

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
test:
uses: ./.github/workflows/test.yml
release:
needs: ['test']
runs-on: ubuntu-latest
steps:
# git checkout
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
# Go env
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
# Release
- name: Create Release
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}