We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7308fcb commit 169bd29Copy full SHA for 169bd29
1 file changed
.github/workflows/cd.yml
@@ -26,6 +26,9 @@ jobs:
26
- name: validate branch
27
if: ${{ github.ref != 'refs/heads/dev' || github.ref != 'refs/heads/main' || (github.ref == 'refs/heads/dev' && (!startsWith(github.event.inputs.version, 'pre') || github.event.inputs.preid != 'alpha')) || (github.ref == 'refs/heads/main' && startsWith(github.event.inputs.version, 'pre') && github.event.inputs.preid != 'rc') }}
28
run: |
29
+ echo ${{ github.ref }}
30
+ echo ${{ github.event.inputs.version }}
31
+ echo ${{ github.event.inputs.preid}}
32
exit 1
33
34
- name: Checkout dev branch
0 commit comments