Skip to content

Commit

Permalink
Merge pull request #25 from questdb/misc
Browse files Browse the repository at this point in the history
Add release workflow
  • Loading branch information
bziobrowski authored Feb 21, 2024
2 parents fc0f611 + 80e0875 commit a7f33e7
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release

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

# necessary to create releases
permissions:
contents: write

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: grafana/plugin-actions/build-plugin@main
with:
# see https://grafana.com/developers/plugin-tools/publish-a-plugin/sign-a-plugin#generate-an-access-policy-token to generate it
# save the value in your repository secrets
policy_token: ${{ secrets.GRAFANA_ACCESS_POLICY_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "grafana-questdb-datasource",
"version": "1.0.0",
"version": "0.1.0",
"description": "QuestDB Datasource for Grafana",
"engines": {
"node": ">=16"
Expand Down

0 comments on commit a7f33e7

Please sign in to comment.