Skip to content

Commit ae311e1

Browse files
Sign Drone's configuration YAML file
This is needed to protect the repository. More info here: https://github.com/grafana/deployment_tools/blob/master/docs/infrastructure/drone/signing.md
1 parent f777326 commit ae311e1

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

.drone.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,9 @@ steps:
1212
image: golang:1.16
1313
commands:
1414
- go test ./...
15+
16+
---
17+
kind: signature
18+
hmac: 7bdd444f0b237b6b8c5c0217dcb870c9fae03a6f6781dafe159a0df8d0b77b5a
19+
20+
...

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.PHONY: drone
2+
3+
drone:
4+
drone lint
5+
drone --server https://drone.grafana.net sign --save grafana/sqlds

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
Most SQL-driven datasources, like `Postgres`, `MySQL`, and `MSSQL` share extremely similar codebases.
88

9-
The `sqlds` package is intended to remove the repitition of these datasources and centralize the datasource logic. The only thing that the datasources themselves should have to define is connecting to the database, and what driver to use, and the plugin frontend.
9+
The `sqlds` package is intended to remove the repetition of these datasources and centralize the datasource logic. The only thing that the datasources themselves should have to define is connecting to the database, and what driver to use, and the plugin frontend.
1010

1111
**Usage**
1212

0 commit comments

Comments
 (0)