sample workflow
This commit is contained in:
parent
c11ed239f5
commit
4c2c97c564
|
@ -28,6 +28,9 @@ action "branch-filter" {
|
|||
action "deploy" {
|
||||
needs = ["branch-filter"]
|
||||
uses = "actions/bin/sh@master"
|
||||
args = ["echo Deploy with secret $PHONY_SECRET"]
|
||||
args = ["env"]
|
||||
secrets = ["PHONY_SECRET"]
|
||||
env = {
|
||||
PHONY_ENV = "foo"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,10 +10,11 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"chai": "^4.2.0",
|
||||
"chai-http": "^4.2.1",
|
||||
"mocha": "^5.2.0"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "node index.js",
|
||||
"test": "mocha ./tests --recursive"
|
||||
"start": "node index.js",
|
||||
"test": "mocha ./tests --recursive"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue