File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -52,4 +52,5 @@ Store your Reflex secrets securely in your repository:
52
52
|extra_args | Additional arguments to pass to the `reflex deploy` command. | ❌ | N/A |
53
53
|python_version| The Python version to use for the deployment environment. | ❌ | 3.12 |
54
54
|dry_run | Whether to run the deployment in dry-run mode. | ❌ | false |
55
+ |skip_checkout | Whether to skip checking out the code, useful for deploying local changes made by an earlier pipeline step. | ❌ | false |
55
56
Original file line number Diff line number Diff line change @@ -22,6 +22,10 @@ inputs:
22
22
description : Whether to run the deployment in dry-run mode.
23
23
required : false
24
24
default : " false"
25
+ skip_checkout :
26
+ description : Whether to skip checking out the code.
27
+ required : false
28
+ default : " false"
25
29
branding :
26
30
icon : upload-cloud
27
31
color : purple
30
34
using : " composite"
31
35
steps :
32
36
- name : Check out code
37
+ if : ${{ inputs.skip_checkout != 'true' }}
33
38
uses : actions/checkout@v4
34
39
- name : Install Python
35
40
uses : actions/setup-python@v5
You can’t perform that action at this time.
0 commit comments