Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ac42d65

Browse files
committed
final test1
1 parent 31497eb commit ac42d65

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/release.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,15 @@ jobs:
123123
cat "$CODER_RELEASE_NOTES_FILE"
124124
125125
- 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' }}
127135
run: |
128136
echo Hello
129137

0 commit comments

Comments
 (0)