Go package for parsing and compiling the drone yaml file
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
liuzhiguo c344feaa73 更换包名 5 months ago
samples add license headers 5 years ago
yaml 更换包名 5 months ago
.drone.yml update yaml 5 years ago
.gitignore support for yaml merge keys 5 years ago
CHANGELOG.md 更换包名 5 months ago
LICENSE 更换包名 5 months ago
NOTICE Update notice [CI SKIP] 5 years ago
README.md 更换包名 5 months ago
go.mod 更换包名 5 months ago
go.sum 更换包名 5 months ago
main.go 更换包名 5 months ago

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