Skip to content

Commit 981693f

Browse files
authored
Merge pull request #127 from mukeshpanchal27/fix/126-set-dry-run-false
Set the default `DRY_RUN` to false
2 parents 38e8571 + 404641c commit 981693f

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)