Skip to content

Commit

Permalink
chore(ci): fix version list (#2894)
Browse files Browse the repository at this point in the history
Signed-off-by: Swilder-M <i@codming.com>
  • Loading branch information
Swilder-M authored and ngjaying committed Jun 24, 2024
1 parent fdc2a84 commit b1b2326
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
- name: generate version config
run: |
cd docs-files
version_list=$(git tag | xargs echo -n)
version_list=$(git tag | grep -E 'v?[0-9]+\.[0-9]+\.[0-9]+$' | xargs echo -n)
python3 .github/scripts/generate_version.py $version_list > ../frontend/docs/public/api/${DOCS_TYPE}_versions.json
cat ../frontend/docs/public/api/${DOCS_TYPE}_versions.json
Expand Down

0 comments on commit b1b2326

Please sign in to comment.