@grafana/create-plugin 1.9.0 → 1.10.0-canary.331.cc6e77d.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ # v1.9.1 (Wed Aug 02 2023)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Do not remove go_plugin_build_manifest on frontendbuild [#322](https://github.com/grafana/plugin-tools/pull/322) ([@academo](https://github.com/academo))
6
+
7
+ #### Authors: 1
8
+
9
+ - Esteban Beltran ([@academo](https://github.com/academo))
10
+
11
+ ---
12
+
1
13
  # v1.9.0 (Tue Jul 11 2023)
2
14
 
3
15
  #### 🚀 Enhancement
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "1.9.0",
3
+ "version": "1.10.0-canary.331.cc6e77d.0",
4
4
  "main": "index.js",
5
5
  "repository": {
6
6
  "directory": "packages/create-plugin",
@@ -66,5 +66,5 @@
66
66
  "engines": {
67
67
  "node": ">=16"
68
68
  },
69
- "gitHead": "f42baf3ba1e5ecb141aaa40319a64f2ab9fd23a2"
69
+ "gitHead": "cc6e77d2b730dfe44c297e567dbf536c6643e4c7"
70
70
  }
@@ -127,7 +127,7 @@ const config = async (env): Promise<Configuration> => ({
127
127
 
128
128
  output: {
129
129
  clean: {
130
- keep: new RegExp(`.*?_(amd64|arm(64)?)(.exe)?`),
130
+ keep: new RegExp(`(.*?_(amd64|arm(64)?)(.exe)?|go_plugin_build_manifest)`),
131
131
  },
132
132
  filename: '[name].js',
133
133
  library: {
@@ -11,6 +11,7 @@ jobs:
11
11
  runs-on: ubuntu-latest
12
12
  env:
13
13
  GRAFANA_API_KEY: $\{{ secrets.GRAFANA_API_KEY }} # Requires a Grafana API key from Grafana.com.
14
+ GRAFANA_ACCESS_POLICY_TOKEN: $\{{ secrets.GRAFANA_ACCESS_POLICY_TOKEN }}
14
15
  steps:
15
16
  - uses: actions/checkout@v3
16
17
  {{#if_eq packageManagerName "pnpm"}}
@@ -65,7 +66,7 @@ jobs:
65
66
 
66
67
  - name: Sign plugin
67
68
  run: {{ packageManagerName }} run sign
68
- if: $\{{ env.GRAFANA_API_KEY != '' }}
69
+ if: $\{{ env.GRAFANA_ACCESS_POLICY_TOKEN != '' }}
69
70
 
70
71
  - name: Get plugin metadata
71
72
  id: metadata