Skip to content

Commit

Permalink
feat(ct): add additional tags for base images
Browse files Browse the repository at this point in the history
  • Loading branch information
poikilotherm committed Apr 10, 2024
1 parent 8afac92 commit a922aed
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/container_base_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,20 @@ jobs:
uses: docker/setup-qemu-action@v3
with:
platforms: ${{ env.PLATFORMS }}
- name: Add additional tags as options
run: |
# For the development branch, update the latest tag in addition
if [[ "${{ matrix.branch }}" == "develop" ]]; then
echo "DOCKER_TAGS='-Ddocker.tags.develop=latest'" | tee -a "${GITHUB_ENV}"
# In case of releases <=6.2, we still need to provide backward compatible names "alpha" and "unstable"
elif [[ "${{ matrix.branch }}" == "v6.2" ]]; then
echo "DOCKER_TAGS='-Ddocker.tags.additional=alpha'" | tee -a "${GITHUB_ENV}"
fi
- name: Deploy multi-arch base container image to Docker Hub
# Do not build for v6.0 and v6.1. We can simply reuse the one from v6.2.
if: ${{ matrix.branch != 'v6.0' && matrix.branch != 'v6.1' }}
run: mvn -f modules/container-base -Pct deploy -Ddocker.skip.push -Ddocker.platforms=${{ env.PLATFORMS }}
run: mvn -f modules/container-base -Pct deploy -Ddocker.skip.push ${DOCKER_TAGS} -Ddocker.platforms=${{ env.PLATFORMS }}

- if: ${{ github.event_name == 'push' && github.ref_name == 'develop' }}
name: Push description to DockerHub
Expand Down

0 comments on commit a922aed

Please sign in to comment.