1
0
mirror of https://github.com/thangisme/notes.git synced 2024-10-04 10:33:56 -04:00

Add main.workflow

This commit is contained in:
Patrick Marsceill 2019-02-06 14:54:07 -05:00 committed by GitHub
parent 20f21217ca
commit 8aa5982cd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

16
.github/main.workflow vendored Normal file
View File

@ -0,0 +1,16 @@
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"]
}