Skip to content

Commit 404641c

Browse files
Set the default DRY_RUN to false
1 parent 38e8571 commit 404641c

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ inputs:
88
generate-zip:
99
description: 'Generate package zip file?'
1010
default: false
11+
dry-run:
12+
description: 'Run the deployment process without committing.'
13+
default: false
1114
outputs:
1215
zip-path:
1316
description: 'Path to zip file'
@@ -18,5 +21,6 @@ runs:
1821
- id: deploy
1922
env:
2023
INPUT_GENERATE_ZIP: ${{ inputs.generate-zip }}
24+
INPUT_DRY_RUN: ${{ inputs.dry-run }}
2125
run: ${{ github.action_path }}/deploy.sh
2226
shell: bash

0 commit comments

Comments
 (0)