1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-30 21:35:24 +00:00
notes/.github/main.workflow
2019-02-06 14:54:07 -05:00

17 lines
384 B
HCL

workflow "Publish to RubyGems" {
on = "release"
resolves = ["scarhand/actions-ruby@master"]
}
action "Build from Gemspec" {
uses = "scarhand/actions-ruby@master"
runs = "build just-the-docs.gemspec"
}
action "scarhand/actions-ruby@master" {
uses = "scarhand/actions-ruby@master"
needs = ["Build from Gemspec"]
runs = "push *.gem"
secrets = ["RUBYGEMS_AUTH_TOKEN"]
}