diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1298e3c..55f89d8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -33,7 +33,7 @@ jobs: echo "Grafana Boom Table plugin - Build"; yarn build; - name: Sign plugin - run: npx @grafana/toolkit@canary plugin:sign + run: npx @grafana/toolkit plugin:sign env: GRAFANA_API_KEY: ${{ secrets.GRAFANA_API_KEY }} - name: Get plugin information diff --git a/GruntFile.js b/GruntFile.js index 4a6265e..85deef1 100644 --- a/GruntFile.js +++ b/GruntFile.js @@ -23,6 +23,12 @@ module.exports = grunt => { expand: true, src: ["img/**/*"], dest: "dist/src/" + }, + logo_to_dist: { + cwd: "src", + expand: true, + src: ["img/logo.png"], + dest: "dist/" } }, @@ -83,6 +89,7 @@ module.exports = grunt => { "sass:build", "copy:src_to_dist", "copy:pluginDef", - "copy:img_to_dist" + "copy:img_to_dist", + "copy:logo_to_dist" ]); }; diff --git a/package.json b/package.json index 3da1292..2df09a6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "yesoreyeram-boomtable-panel", - "version": "1.5.0-alpha.1", + "version": "1.5.0-alpha.2", "description": "Boom table panel for Graphite, InfluxDB, Prometheus", "main": "dist/module.js", "scripts": { diff --git a/src/img/logo.png b/src/img/logo.png new file mode 100644 index 0000000..0f761bc Binary files /dev/null and b/src/img/logo.png differ diff --git a/src/plugin.json b/src/plugin.json index 4e03698..28015f1 100644 --- a/src/plugin.json +++ b/src/plugin.json @@ -26,7 +26,12 @@ "url": "https://github.com/yesoreyeram/yesoreyeram-boomtable-panel" } ], - "version": "1.5.0-alpha.1" + "version": "1.5.0-alpha.2", + "updated": "%TODAY%", + "logos": { + "small": "img/logo.png", + "large": "img/logo.png" + } }, "dependencies": { "grafanaDependency": ">4.0.0"