Skip to content

Commit

Permalink
Merge pull request #70 from mlinfra-io/fix-broken-deployment
Browse files Browse the repository at this point in the history
Updated mike action
  • Loading branch information
aliabbasjaffri committed Feb 20, 2024
2 parents 3257d40 + f9940cc commit 762ff10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/mike-docs/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ runs:
run: |
MIKE_OPTIONS=( "--update-aliases" )
if [ "true" = "${{ inputs.push }}" ]; then
MIKE_OPTIONS+=( " --push" )
MIKE_OPTIONS+=( "--push" )
fi
mike deploy ${{ inputs.version }} ${{ inputs.alias }} "${MIKE_OPTIONS[@]}"
mike deploy "${MIKE_OPTIONS[@]}" ${{ inputs.version }} ${{ inputs.alias }}
if [ "true" = "${{ inputs.push }}" ]; then
mike set-default --push latest
fi
Expand Down

0 comments on commit 762ff10

Please sign in to comment.