new repo: flespi grafana datasource plugin with new plugin id flespis… #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
- 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 }} | |
- run: mv flespisoftware-parameters-datasource-*.zip flespisoftware-parameters-datasource.zip | |
- uses: softprops/action-gh-release@v2 | |
with: | |
draft: true | |
files: flespisoftware-parameters-datasource.zip | |