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 86d2774 commit 94ee31dCopy full SHA for 94ee31d
.github/workflows/main.yml
@@ -37,12 +37,12 @@ jobs:
37
- CFLAGS="-O2 -fno-omit-frame-pointer -fsanitize=undefined -fno-var-tracking" --disable-bindings --disable-docs --enable-check-less
38
- --enable-debug
39
steps:
40
- - if: startsWith(github.ref, 'refs/tags/')
+ - if: ${{ startsWith(github.ref, 'refs/tags/') }}
41
name: checkout for tag
42
uses: actions/checkout@v4
43
with:
44
submodules: recursive
45
- - if: startsWith(github.ref, 'refs/heads/')
+ - if: ${{ !startsWith(github.ref, 'refs/tags/') }}
46
name: checkout for commit --depth 50
47
48
0 commit comments