Skip to content

Commit c0d0b0d

Browse files
committed
Changed action struct
1 parent 839e7d1 commit c0d0b0d

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

.github/workflows/run-integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v2
2121
- uses: ./
2222
with:
23-
command: pwd
23+
command: "echo 'yarn vercel:cleanup && yarn vercel:deploy --local-config=vercel.customer1.staging.json and found https://app.vercel.app'"
2424
env:
2525
VERCEL_TOKEN: "temporary nothing"
2626
- uses: ./

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ inputs:
77
command:
88
description: 'Command to execute to start vercel deployment'
99
required: true
10-
deploy-alias:
10+
deploy_alias:
1111
description: 'Enable alias feature in the vercel.json'
1212
required: false
1313
default: "true"

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@
3232
"license": "MIT",
3333
"dependencies": {
3434
"@actions/core": "1.2.6",
35-
"@actions/exec": "^1.0.4"
35+
"@actions/exec": "^1.0.4",
36+
"@actions/glob": "^0.1.1",
37+
"node-fetch": "^2.6.1"
3638
},
3739
"devDependencies": {
3840
"@babel/parser": "7.12.10",

yarn.lock

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# yarn lockfile v1
33

44

5-
"@actions/core@1.2.6":
5+
"@actions/core@1.2.6", "@actions/core@^1.2.6":
66
version "1.2.6"
77
resolved "https://registry.yarnpkg.com/@actions/core/-/core-1.2.6.tgz#a78d49f41a4def18e88ce47c2cac615d5694bf09"
88
integrity sha512-ZQYitnqiyBc3D+k7LsgSBmMDVkOVidaagDG7j3fOym77jNunWRuYx7VSHa9GNfFZh+zh61xsCjRj4JxMZlDqTA==
@@ -14,6 +14,14 @@
1414
dependencies:
1515
"@actions/io" "^1.0.1"
1616

17+
"@actions/glob@^0.1.1":
18+
version "0.1.1"
19+
resolved "https://registry.yarnpkg.com/@actions/glob/-/glob-0.1.1.tgz#0af851312dfed21fdf9eac3473cfde93ffa56e40"
20+
integrity sha512-ikM4GVZOgSGDNTjv0ECJ8AOqmDqQwtO4K1M4P465C9iikRq34+FwCjUVSwzgOYDP85qtddyWpzBw5lTub/9Xmg==
21+
dependencies:
22+
"@actions/core" "^1.2.6"
23+
minimatch "^3.0.4"
24+
1725
"@actions/io@^1.0.1":
1826
version "1.0.2"
1927
resolved "https://registry.yarnpkg.com/@actions/io/-/io-1.0.2.tgz#2f614b6e69ce14d191180451eb38e6576a6e6b27"
@@ -3925,6 +3933,11 @@ nice-try@^1.0.4:
39253933
resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
39263934
integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
39273935

3936+
node-fetch@^2.6.1:
3937+
version "2.6.1"
3938+
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052"
3939+
integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==
3940+
39283941
node-int64@^0.4.0:
39293942
version "0.4.0"
39303943
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"

0 commit comments

Comments
 (0)