Skip to content

Commit

Permalink
Fix docker build successful check
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Jan 10, 2021
1 parent 3a3f7c5 commit 472898a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-docker.yml
Expand Up @@ -73,7 +73,7 @@ jobs:
docker run --name qgis_container qgis/qgis:BUILDER /bin/true
docker cp qgis_container:/QGIS/build_exit_value ./build_exit_value
if [[ $(cat ./build_exit_value) -ne "OK" ]]; then
if [[ $(cat ./build_exit_value) != "OK" ]]; then
echo "Build failed, not pushing image"
exit 1
fi
Expand Down

0 comments on commit 472898a

Please sign in to comment.