Skip to content

Commit

Permalink
fix: check alpha version on publish job (#2075)
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeSchwert authored Aug 6, 2024
1 parent 3d18c96 commit 851881c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/publish-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
name: Publish SDK Reference Docs
runs-on: ubuntu-latest
needs: AlphaCheck
# if: ${{ needs.AlphaCheck.outputs.is_alpha == 'false' }}
if: ${{ needs.AlphaCheck.outputs.is_alpha == 'false' }}
env:
SDK_PUBLISH_SLACK_WEBHOOK: ${{ secrets.SDK_PUBLISH_SLACK_WEBHOOK }}
NETLIFY_BUILD_HOOK: ${{ secrets.NETLIFY_BUILD_HOOK }}
Expand All @@ -47,7 +47,6 @@ jobs:
steps:
- name: Is Alpha Version
run: |
echo "Is Alpha Version: ${{ needs.AlphaCheck.outputs.is_alpha }}"
echo "Is Alpha Version: ${{ env.IS_ALPHA }}"
- name: Check Public Release Branch
Expand Down

0 comments on commit 851881c

Please sign in to comment.