Skip to content

Commit

Permalink
fix: SDK reference docs workflow (#2062)
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeSchwert authored Aug 5, 2024
1 parent 03a9380 commit 63ce68b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/publish-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:
- name: Check alpha version
id: alpha_check
run: |
if $(git describe --tags --abbrev=0) | grep -q "alpha"; then
VERSION=$(git describe --tags --abbrev=0)
if echo "$VERSION" | grep -q "alpha"; then
echo "Skipping docs generation for alpha version"
echo "is_alpha=true" >> $GITHUB_ENV
exit 0
Expand Down

0 comments on commit 63ce68b

Please sign in to comment.