Skip to content

Commit

Permalink
chore(ci): add workflow for release
Browse files Browse the repository at this point in the history
  • Loading branch information
everpcpc committed Feb 18, 2024
1 parent 7576a54 commit 17db3ad
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Release

on:
push:
tags:
- 'v*' # Run workflow on version tags, e.g. v1.0.0.

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# https://github.com/grafana/plugin-actions/blob/main/build-plugin/README.md
# https://grafana.com/developers/plugin-tools/publish-a-plugin/sign-a-plugin#generate-an-access-policy-token
- uses: grafana/plugin-actions/build-plugin@release
with:
policy_token: ${{ secrets.GRAFANA_ACCESS_POLICY_TOKEN }}

0 comments on commit 17db3ad

Please sign in to comment.