Skip to content

Commit

Permalink
fix_ci: Convert if to elif (#311)
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagoftsm authored Jul 19, 2022
1 parent 5f9a827 commit 4851eb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
run: |
if [ ${{ matrix.kernel_version }} = "5.14.0" ]; then
os=centos9
if [ ${{ matrix.kernel_version }} = "4.18.0" ]; then
elif [ ${{ matrix.kernel_version }} = "4.18.0" ]; then
os=centos8
elif [ ${{ matrix.kernel_version }} = "3.10.0" ]; then
os=centos7
Expand Down

0 comments on commit 4851eb6

Please sign in to comment.