Skip to content

Commit

Permalink
Add support for building main
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenweyns committed Nov 15, 2024
1 parent 92fae41 commit 1ac2c63
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build_and_push_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@ jobs:
DOCKER_TAGS+=( "$INPUT_VERSION" )
fi
if [[ "$BRANCH_TO_BUILD" == "main" ]]; then
BRANCH_TO_BUILD="main"
DOCKER_TAGS+=( "main" )
fi
if [[ "$BRANCH_TO_BUILD" != "" ]]; then
echo "DOCKER_TAGS: ${DOCKER_TAGS[*]}"
echo "BRANCH_TO_BUILD: $BRANCH_TO_BUILD"
Expand Down

0 comments on commit 1ac2c63

Please sign in to comment.