Skip to content

Commit

Permalink
fix: SDK reference docs workflow (#2065)
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeSchwert authored Aug 5, 2024
1 parent 63ce68b commit a38e5ef
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/publish-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,17 @@ jobs:
name: Publish SDK Reference Docs
runs-on: ubuntu-latest
needs: AlphaCheck
if: ${{ needs.AlphaCheck.outputs.is_alpha != 'true' }}
if: ${{ needs.AlphaCheck.outputs.is_alpha == 'false' }}
env:
SDK_PUBLISH_SLACK_WEBHOOK: ${{ secrets.SDK_PUBLISH_SLACK_WEBHOOK }}
NETLIFY_BUILD_HOOK: ${{ secrets.NETLIFY_BUILD_HOOK }}
GITHUB_USER: ${{ github.actor }}
IS_ALPHA: ${{ needs.AlphaCheck.outputs.is_alpha }}
steps:
- name: Is Alpha Version
run: |
echo "Is Alpha Version: ${{ env.IS_ALPHA }}"
- name: Checkout
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit a38e5ef

Please sign in to comment.