This is a replacement for the rubydoc.info site that has been a bit unreliable for us. Also, note we're using the community Ruby style guide now rather than the GitHub one.
11 lines
218 B
HCL
11 lines
218 B
HCL
workflow "Push" {
|
|
on = "push"
|
|
resolves = ["Generate rubydoc.brew.sh"]
|
|
}
|
|
|
|
action "Generate rubydoc.brew.sh" {
|
|
uses = "docker://ruby:latest"
|
|
runs = ".github/main.workflow.sh"
|
|
secrets = ["RUBYDOC_DEPLOY_KEY"]
|
|
}
|