Skip to content

actions workflows file modified #13

actions workflows file modified

actions workflows file modified #13

Workflow file for this run

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:

Check failure on line 15 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

You have an error in your yaml syntax on line 15
- 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 flespi-parameters-datasource-*.zip flespi-parameters-datasource.zip
uses: softprops/action-gh-release@v2
with:
files: flespi-parameters-datasource.zip
# - uses: actions/upload-release-asset@v1
# with:
# upload_url:
# asset_path: ./flespi-parameters-datasource.zip
# asset_name: flespi-parameters-datasource.zip
# asset_content_type: application/zip