Skip to content

Commit

Permalink
logo added
Browse files Browse the repository at this point in the history
  • Loading branch information
yesoreyeram committed Nov 20, 2020
1 parent 83068e3 commit db9082a
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 8 additions & 1 deletion GruntFile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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/"
}
},

Expand Down Expand Up @@ -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"
]);
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
Binary file added src/img/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 6 additions & 1 deletion src/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit db9082a

Please sign in to comment.