Skip to content
This repository was archived by the owner on Nov 24, 2025. It is now read-only.

Releases: philips-software/docker-ci-scripts

v3.1.0 - Support multiple push-branches

23 Sep 09:25
ee05744

Choose a tag to compare

Add support for multiple push-branches. Thanks again Vincent Maggioli (@vmaggioli)
This can be handy for f.e. gitflow.

Syntax:
push-branches: master develop

DEPRECATION WARNING

push-branch is replaced by push-branches. In the next major release this will be removed.

v3.0.0 - Always go back to the root!

15 Sep 08:54
7b0afde

Choose a tag to compare

Breaking changes v3.0.0

The docker build command is now being called from the root of the project instead of the directory.

This has impact when your project has these two things:

  • Directories with dockerfiles
  • The dockerfile contains an ADD or a COPY command.

You now need to change the path to include the directory.

Example

  • ADD /scripts/entrypoint.sh entrypoint.sh becomes: ADD /6/java/scripts/entrypoint.sh entrypoint

v2.3.0 - Specify dockerfile

11 Sep 14:05
196c2de

Choose a tag to compare

Thanks to Vincent Maggioli (@vmaggioli) we now can specify a specific dockerfile instead of a path!

Small refactoring

08 Jul 10:35
a95c8ac

Choose a tag to compare

Small refactoring on scripts

Auto update docker.io description

18 May 16:25
4cfa739

Choose a tag to compare

Fix for #28 : Auto update description on docker.io

Support other docker registries

01 May 13:03
b38ee0f

Choose a tag to compare

Add support for other docker registries.

  • DOCKER_ORGANIZATION only mandatory for docker.io

Description is key

23 Mar 18:38
84b5c93

Choose a tag to compare

This release focusses on:

  • Update description when pushing to docker.io

REPO file

18 Mar 16:32
9fe1d2f

Choose a tag to compare

Small fixes

CHANGES

The repo file was not correct.... oeps.... Fixed it.. #26

Multi docker repositories support

18 Mar 10:58
e47d447

Choose a tag to compare

Features

#21 - Support for different docker registries.
Default docker registry is docker.io. You can override that with: docker-registry.

Breaking Changes

Separated image-name from tags.

tags used to have both the image-name and tag. We've moved the image-name to image-name.
tags now only has the tags, in other words, only the part behind the :

Shell-linters....

15 Mar 09:12
f365e76

Choose a tag to compare

Shell-linter

We've added a shell-linter.

Purpose

We want our shell scripts to be as good as possible.
We can use shell-linters / shellcheck to test our scripts and to improve them.

Changes

This release only introduces a shell-linter for the build of this github action.
The changes in the code are a result of the tips the shell-linter gave.