We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 38e8571 + 404641c commit 981693fCopy full SHA for 981693f
1 file changed
action.yml
@@ -8,6 +8,9 @@ inputs:
8
generate-zip:
9
description: 'Generate package zip file?'
10
default: false
11
+ dry-run:
12
+ description: 'Run the deployment process without committing.'
13
+ default: false
14
outputs:
15
zip-path:
16
description: 'Path to zip file'
@@ -18,5 +21,6 @@ runs:
18
21
- id: deploy
19
22
env:
20
23
INPUT_GENERATE_ZIP: ${{ inputs.generate-zip }}
24
+ INPUT_DRY_RUN: ${{ inputs.dry-run }}
25
run: ${{ github.action_path }}/deploy.sh
26
shell: bash
0 commit comments