mirror of
https://github.com/thangisme/notes.git
synced 2024-12-22 15:26:41 -05:00
Merge pull request #89 from pmarsceill/github-action-for-release
Add main.workflow
This commit is contained in:
commit
b44efbf1da
16
.github/main.workflow
vendored
Normal file
16
.github/main.workflow
vendored
Normal 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"]
|
||||
}
|
Loading…
Reference in New Issue
Block a user