Skip to content

Commit

Permalink
Issue #3628: enable build for rel-11_0 and rel-11_1
Browse files Browse the repository at this point in the history
  • Loading branch information
bschmalhofer committed Jul 26, 2024
1 parent 432fcd0 commit 5378dfe
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/docker_image_builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ name: 'DockerImageBuilder'

on:

# build a devel Docker image whenever there is a push into the listed branches
# Build a devel Docker image whenever there is a push into the listed branches.
push:
branches:
- rel-10_0
- rel-10_1
- rel-11_0
- rel-11_1

jobs:
BuildDockerImage:
Expand All @@ -27,7 +29,7 @@ jobs:
run: |
branch="${{ github.ref_name }}" # e.g rel-10_0
branch_without_rel="${branch:4}" # e.g. 10_0
docker_tag="devel-$branch_without_rel"
docker_tag="devel-$branch_without_rel" # TODO: devel-rel-DD_D
mixed_case_repository="${{ github.repository }}" # e.g. RotherOSS/otobo
lowercased_repository="${mixed_case_repository,,}" # e.g. rotheross/otobo
build_date=$(date -u +'%Y-%m-%dT%H:%M:%SZ')
Expand Down

0 comments on commit 5378dfe

Please sign in to comment.