We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0ec39e commit 0bf91d3Copy full SHA for 0bf91d3
README.md
@@ -40,6 +40,7 @@
40
41
# Deployer version to download from deployer.org.
42
# First, the action will check for Deployer binary at those paths:
43
+ # - `vendor/bin/deployer.phar`
44
# - `vendor/bin/dep`
45
# - `deployer.phar`
46
# If the binary not found, phar version will be downloaded from
index.js
@@ -45,7 +45,7 @@ async function dep() {
let dep = core.getInput('deployer-binary')
47
if (dep === '')
48
- for (let c of ['vendor/bin/dep', 'deployer.phar']) {
+ for (let c of ['vendor/bin/deployer.phar', 'vendor/bin/dep', 'deployer.phar']) {
49
if (fs.existsSync(c)) {
50
dep = c
51
console.log(`Using "${c}".`)
0 commit comments