Skip to content

Releases: Staffbase/gitops-github-action

Release v4.1

28 Nov 11:26
910ddf0

Choose a tag to compare

What’s Changed

  • 🎨 Retry push attempts (#57) @scthi
  • 🔥 remove deprecated set-output (#56) @flaxel
  • ⬆️ Manual Dependabot PR for gha_workflows (#55) @flaxel
  • Bump cla-assistant/github-action from 2.2.0 to 2.2.1 (#54) @dependabot
  • ⬆️ Manual Dependabot PR for gha_workflows (#52) @flaxel
  • 🎨 check if there are changes to commit (#49) @flaxel
  • Adjust catalog entry (#50) @axdotl
  • Add necessary marketplace information (#51) @axdotl
  • Bump cla-assistant/github-action from 2.1.1.pre.beta to 2.2.0 (#48) @dependabot
  • 📝 bump major version (#46) @flaxel

Release v4

18 Jul 07:26
8e5552a

Choose a tag to compare

What’s Changed

Migration

  • possibility to use the action as normal action without checkout the code
  • renaming of the variables - added dashes, f.e. dockerimage to docker-image

Release v3

20 Jan 08:56
7aa976e

Choose a tag to compare

Whats New:

  • use official actions for docker login, build and push
  • enable docker buildx github action cache
  • split dockeradditionalbuildparams into dockerbuildargs and dockerbuildtarget

Migration from v2 to v3:

  • split your dockeradditionalbuildparams to dockerbuildargs and dockerbuildtarget like:
    old:
    dockeradditionalbuildparams: "--target runtime --build-arg ARG1='one' --build-arg ARG2='two'"
    new:
    dockerbuildargs: "ARG1='one',ARG2='two'"
    dockerbuildtarget: "runtime"