Skip to content
This repository has been archived by the owner on Mar 22, 2023. It is now read-only.

Commit

Permalink
Update main.workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
marocchino committed Feb 23, 2019
1 parent c2d1929 commit 5f95f47
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/main.workflow
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,21 @@ workflow "Deploy on master" {
on = "push"
resolves = [
"Publish",
"Check git config",
]
}

action "Check git config" {
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
runs = "ssh"
args = "-T [email protected]"
secrets = ["GITHUB_TOKEN"]
}

action "Master" {
uses = "actions/bin/filter@24a566c2524e05ebedadef0a285f72dc9b631411"
runs = "ls"

# args = "branch master"
}

Expand All @@ -27,5 +36,5 @@ action "Publish" {
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
args = "run deploy"
secrets = ["GITHUB_TOKEN"]
needs = ["npm install"]
needs = ["Generate"]
}

0 comments on commit 5f95f47

Please sign in to comment.