mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-06 20:21:22 -06:00
17 lines
372 B
HCL
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"]
|
|
}
|