mirror of
https://github.com/thangisme/notes.git
synced 2024-11-03 03:37:21 -05:00
17 lines
384 B
HCL
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"]
|
|
}
|