build: fix deps workflow tag comparison (#35830)
This commit is contained in:
parent
998a0820d9
commit
dfb8a2d804
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ jobs:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Check Tag
|
- name: Check Tag
|
||||||
run: |
|
run: |
|
||||||
if [[ ${{ github.event.ref }} =~ ^refs/tags/v[0-9]+\.0\.0$ ]]; then
|
if [[ ${{ github.event.release.tag_name }} =~ ^v[0-9]+\.0\.0$ ]]; then
|
||||||
echo ::set-output name=should_release::true
|
echo ::set-output name=should_release::true
|
||||||
fi
|
fi
|
||||||
trigger:
|
trigger:
|
||||||
|
|
Loading…
Reference in a new issue