Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. workflow "Deploy to cloud" {
  2. on = "master"
  3. resolves = ["deploy"]
  4. }
  5.  
  6. action "deploy" {
  7. uses = "maddox/actions/ssh@master"
  8. args = "./deploy.sh"
  9. secrets = [
  10. "PRIVATE_KEY",
  11. "HOST",
  12. "USER"
  13. ]
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement