Skip to content

Commit 3d33595

Browse files
author
Jose Diaz-Gonzalez
committed
fix: use double-quotes to encase strings
1 parent ff2db90 commit 3d33595

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

action.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,45 @@
11
---
2-
name: 'Dokku'
3-
description: 'Official Github Action for deploying apps to a Dokku installation'
4-
author: 'Dokku'
2+
name: "Dokku"
3+
description: "Official Github Action for deploying apps to a Dokku installation"
4+
author: "Dokku"
55
branding:
6-
icon: 'upload-cloud'
7-
color: 'blue'
6+
icon: "upload-cloud"
7+
color: "blue"
88
inputs:
99
branch:
10-
description: 'The branch to deploy when pushing to Dokku (default: master)'
10+
description: "The branch to deploy when pushing to Dokku (default: master)"
1111
required: false
12-
default: 'master'
12+
default: "master"
1313
ci_branch_name:
14-
description: 'The command to run for the action (default: detected from GITHUB_REF)'
14+
description: "The command to run for the action (default: detected from GITHUB_REF)"
1515
required: false
16-
default: ''
16+
default: ""
1717
command:
18-
description: 'The command to run for the action (default: deploy)'
18+
description: "The command to run for the action (default: deploy)"
1919
required: false
20-
default: 'deploy'
20+
default: "deploy"
2121
git_push_flags:
22-
description: 'The dokku app\'s git repository url (in SSH format)'
22+
description: "The dokku app's git repository url (in SSH format)"
2323
required: true
2424
git_remote_url:
25-
description: 'A string containing a set of flags to set on push'
25+
description: "A string containing a set of flags to set on push"
2626
required: false
2727
review_app_name:
28-
description: 'The name of the review app to create or destroy'
28+
description: "The name of the review app to create or destroy"
2929
required: false
30-
default: ''
30+
default: ""
3131
ssh_host_key:
32-
description: 'The results of running `ssh-keyscan -t rsa $HOST`'
32+
description: "The results of running `ssh-keyscan -t rsa $HOST`"
3333
required: false
34-
default: ''
34+
default: ""
3535
ssh_private_key:
36-
description: 'A private SSH key that has push acces to your Dokku instance'
36+
description: "A private SSH key that has push acces to your Dokku instance"
3737
required: true
3838
runs:
39-
using: 'docker'
40-
image: 'Dockerfile'
41-
entrypoint: '/bin/dokku-deploy'
42-
post-entrypoint: '/bin/dokku-unlock'
39+
using: "docker"
40+
image: "Dockerfile"
41+
entrypoint: "/bin/dokku-deploy"
42+
post-entrypoint: "/bin/dokku-unlock"
4343
post-if: cancelled()
4444
env:
4545
BRANCH: ${{ inputs.branch }}

0 commit comments

Comments
 (0)