Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31497eb commit ac42d65Copy full SHA for ac42d65
.github/workflows/release.yaml
@@ -123,7 +123,15 @@ jobs:
123
cat "$CODER_RELEASE_NOTES_FILE"
124
125
- name: Test
126
- if: ${{ !github.event.inputs.dry_run && !github.event.inputs.snapshot }}
+ 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' }}
135
run: |
136
echo Hello
137
0 commit comments