Skip to content

Commit

Permalink
workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
saadeghi committed Dec 1, 2023
1 parent 6c72ae0 commit c0b0092
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ jobs:
- name: Build docs
run: |
cd src/docs
if [[ -z ${{inputs.daisyuiversion}} ]]; then
VITE_DAISYUI_VERSION=${{inputs.daisyuiversion}} ${{ env.runtime }} run build
else
if [[ -z "${{inputs.daisyuiversion}}" ]]; then
${{ env.runtime }} run build
else
VITE_DAISYUI_VERSION=${{inputs.daisyuiversion}} ${{ env.runtime }} run build
fi
- name: Deploy docs to github pages
Expand Down

0 comments on commit c0b0092

Please sign in to comment.