Skip to content

Commit

Permalink
Merge branch '3.5.x' into 3.6.x
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBadura committed Nov 5, 2024
2 parents 9cbe375 + 47e202f commit dabe901
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docs-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ jobs:
- run: git fetch doc gh-pages --verbose

- run: |
current_major=$(echo "$version_current" | cut -d '.' -f 1)
current_minor=$(echo "$version_current" | cut -d '.' -f 2)
current_major=$(echo "${{ steps.current.outputs.result }}" | cut -d '.' -f 1)
current_minor=$(echo "${{ steps.current.outputs.result }}" | cut -d '.' -f 2)
latest_major=$(echo "$version_latest" | cut -d '.' -f 1)
latest_minor=$(echo "$version_latest" | cut -d '.' -f 2)
latest_major=$(echo "${{ steps.latest.outputs.result }}" | cut -d '.' -f 1)
latest_minor=$(echo "${{ steps.latest.outputs.result }}" | cut -d '.' -f 2)
if [ "${{ steps.current.outputs.result }}" = "${{ steps.latest.outputs.result }}" ]
then
Expand Down

0 comments on commit dabe901

Please sign in to comment.