Go to file
Brad Rydzewski d8a884b861 update git clone image tags for windows 2019-03-14 17:42:31 -07:00
samples add license headers 2019-02-10 11:00:16 -08:00
yaml update git clone image tags for windows 2019-03-14 17:42:31 -07:00
.drone.yml update yaml 2019-02-21 17:01:17 -08:00
.gitignore initial commit 2019-01-22 15:44:17 -08:00
LICENSE update yaml 2019-02-21 17:01:17 -08:00
NOTICE Update notice [CI SKIP] 2019-02-19 19:53:09 -08:00
README.md initial commit 2019-01-22 15:44:17 -08:00
go.mod enable modules 2019-02-18 08:07:01 -08:00
go.sum enable modules 2019-02-18 08:07:01 -08:00
main.go add from_secret with short and long format 2019-02-21 12:48:45 -08:00

README.md

Package yaml provides a parser, linter, formatter and compiler for the drone configuration file format.

Lint the yaml file:

$ drone-yaml lint samples/simple.yml

Format the yaml file:

$ drone-yaml fmt samples/simple.yml
$ drone-yaml fmt samples/simple.yml --save

Sign the yaml file using a 32-bit secret key:

$ drone-yaml sign 642909eb4c3d47e33999235c0598353c samples/simple.yml
$ drone-yaml sign 642909eb4c3d47e33999235c0598353c samples/simple.yml --save

Verify the yaml file signature:

$ drone-yaml verify 642909eb4c3d47e33999235c0598353c samples/simple.yml

Compile the yaml file:

$ drone-yaml compile samples/simple.yml > samples/simple.json