Skip to content

Commit 84495ba

Browse files
committed
Add release workflow for automated plugin deployment
1 parent 98229d5 commit 84495ba

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/release.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
jobs:
9+
release:
10+
permissions:
11+
id-token: write
12+
contents: write
13+
attestations: write
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
18+
- uses: grafana/plugin-actions/build-plugin@main
19+
with:
20+
policy_token: ${{ secrets.GRAFANA_ACCESS_POLICY_TOKEN }}
21+
attestation: true

0 commit comments

Comments
 (0)