Update nightly-tag-generation.yml

This commit is contained in:
Maidul Islam
2025-08-08 15:43:13 -07:00
committed by GitHub
parent 994ee88852
commit 102620ff09

View File

@@ -29,7 +29,7 @@ jobs:
- name: Generate nightly tag
run: |
# Get the latest infisical production tag
LATEST_STABLE_TAG=$(git tag --list | grep "^v[0-9].*$" | sort -V | tail -n1)
LATEST_STABLE_TAG=$(git tag --list | grep "^v[0-9].*$" | grep -v "nightly" | sort -V | tail -n1)
if [ -z "$LATEST_STABLE_TAG" ]; then
echo "No infisical production tags found, using v0.1.0"