Skip to content

Commit

Permalink
Bash syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alex1701c committed Oct 13, 2024
1 parent 46e16cc commit d546bac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ jobs:
working-directory: build/
shell: bash
run: |
CMAKE_ARGS = ".. -DCMAKE_BUILD_TYPE=RelWithDebInfo"
CMAKE_ARGS=".. -DCMAKE_BUILD_TYPE=RelWithDebInfo"
if [[ -n "${{ inputs.publish-version }}" ]]
CMAKE_ARGS = "$CMAKE_ARGS -DCPACK_OS=${{ matrix.os.name }}"
CMAKE_ARGS="$CMAKE_ARGS -DCPACK_OS=${{ matrix.os.name }}"
fi
if [[ "${{ matrix.plasma_version }}" == "plasma6" ]]; then
cmake $CMAKE_ARGS -DBUILD_WITH_QT6=ON "
Expand Down

0 comments on commit d546bac

Please sign in to comment.