1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-11 05:00:43 +00:00
notes/.github/main.workflow
2019-04-30 18:14:13 -07:00

17 lines
372 B
HCL

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