Skip to content

Commit 8b12a2d

Browse files
chore(main): release build-plugin 1.2.0 (#207)
Co-authored-by: grafana-plugins-platform-bot[bot] <144369747+grafana-plugins-platform-bot[bot]@users.noreply.github.com>
1 parent d00c6f3 commit 8b12a2d

3 files changed

Lines changed: 15 additions & 8 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"build-plugin": "1.1.0",
2+
"build-plugin": "1.2.0",
33
"bundle-size": "1.1.0",
44
"bundle-types": "1.0.2",
55
"create-plugin-update": "2.0.1",

build-plugin/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [1.2.0](https://github.com/grafana/plugin-actions/compare/build-plugin/v1.1.0...build-plugin/v1.2.0) (2026-02-24)
4+
5+
6+
### 🎉 Features
7+
8+
* support signing of private plugins ([#177](https://github.com/grafana/plugin-actions/issues/177)) ([765ad2d](https://github.com/grafana/plugin-actions/commit/765ad2d0a4172d3dd7925bab0255915eb5c6b468))
9+
310
## [1.1.0](https://github.com/grafana/plugin-actions/compare/build-plugin/v1.0.2...build-plugin/v1.1.0) (2026-02-24)
411

512

build-plugin/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ name: Release
2929
on:
3030
push:
3131
tags:
32-
- "v*" # Run workflow on version tags, e.g. v1.1.0.
32+
- "v*" # Run workflow on version tags, e.g. v1.2.0.
3333

3434
jobs:
3535
release:
@@ -41,7 +41,7 @@ jobs:
4141
steps:
4242
- uses: actions/checkout@v4
4343

44-
- uses: grafana/plugin-actions/build-plugin@build-plugin/v1.1.0
44+
- uses: grafana/plugin-actions/build-plugin@build-plugin/v1.2.0
4545
with:
4646
# see https://grafana.com/developers/plugin-tools/publish-a-plugin/sign-a-plugin#generate-an-access-policy-token to generate it
4747
# save the value in your repository secrets
@@ -73,7 +73,7 @@ name: Release
7373
on:
7474
push:
7575
tags:
76-
- "v*" # Run workflow on version tags, e.g. v1.1.0.
76+
- "v*" # Run workflow on version tags, e.g. v1.2.0.
7777
7878
jobs:
7979
release:
@@ -86,7 +86,7 @@ jobs:
8686
steps:
8787
- uses: actions/checkout@v4
8888
89-
- uses: grafana/plugin-actions/build-plugin@build-plugin/v1.1.0
89+
- uses: grafana/plugin-actions/build-plugin@build-plugin/v1.2.0
9090
with:
9191
policy_token: ${{ secrets.GRAFANA_ACCESS_POLICY_TOKEN }}
9292
attestation: true # new line
@@ -108,7 +108,7 @@ To enable changelog generation in your workflow:
108108
<!-- x-release-please-start-version -->
109109

110110
```yaml
111-
- uses: grafana/plugin-actions/build-plugin@build-plugin/v1.1.0
111+
- uses: grafana/plugin-actions/build-plugin@build-plugin/v1.2.0
112112
with:
113113
policy_token: ${{ secrets.GRAFANA_ACCESS_POLICY_TOKEN }}
114114
use_changelog_generator: true
@@ -128,7 +128,7 @@ If your target branch is protected, the default github.token cannot push changes
128128

129129
```yaml
130130
- name: Build plugin
131-
uses: grafana/plugin-actions/build-plugin@build-plugin/v1.1.0
131+
uses: grafana/plugin-actions/build-plugin@build-plugin/v1.2.0
132132
with:
133133
use_changelog_generator: true
134134
token: ${{ secrets.CHANGELOG_PAT }} # Replace default github.token
@@ -141,7 +141,7 @@ If your plugin requires a different Go version than the default, you can specify
141141
<!-- x-release-please-start-version -->
142142

143143
```yaml
144-
- uses: grafana/plugin-actions/build-plugin@build-plugin/v1.1.0
144+
- uses: grafana/plugin-actions/build-plugin@build-plugin/v1.2.0
145145
with:
146146
policy_token: ${{ secrets.GRAFANA_ACCESS_POLICY_TOKEN }}
147147
go-version: '1.23'

0 commit comments

Comments
 (0)