Skip to content

Commit

Permalink
Detect GitHub actions correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAssassin committed Jan 2, 2025
1 parent eff63b8 commit ba1b820
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/build-docker-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ docker_command=(
)

# if we are building on GitHub actions, we can also push the resulting image
if [[ "${GITHUB_CI:-}" != "" ]]; then
if [[ "${GITHUB_ACTIONS:-}" != "" ]]; then
echo "Going to push built image"
docker_command+=(
--cache-to inline
Expand Down

0 comments on commit ba1b820

Please sign in to comment.