File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,15 @@ jobs:
123
123
cat "$CODER_RELEASE_NOTES_FILE"
124
124
125
125
- name : Test
126
- if : ${{ !github.event.inputs.dry_run && !github.event.inputs.snapshot }}
126
+ run : |
127
+ echo ${{ github.event.inputs.dry_run == 'false' && github.event.inputs.snapshot == 'false' }}
128
+ echo ${{ github.event.inputs.dry_run == 'false' || github.event.inputs.snapshot == 'false' }}
129
+ echo ${{ github.event.inputs.dry_run && github.event.inputs.snapshot }}
130
+ echo ${{ github.event.inputs.dry_run || github.event.inputs.snapshot }}
131
+ echo ${{ !github.event.inputs.dry_run || !github.event.inputs.snapshot }}
132
+
133
+ - name : Test if
134
+ if : ${{ github.event.inputs.dry_run == 'false' && github.event.inputs.snapshot == 'false' }}
127
135
run : |
128
136
echo Hello
129
137
You can’t perform that action at this time.
0 commit comments