Releases: Staffbase/gitops-github-action
Releases · Staffbase/gitops-github-action
Release v4.1
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
What’s Changed
- 🎨 download yq if necessary (#38) @flaxel
- 👷 docker login only if docker enabled (#39) @flaxel
- ⬆️ Manual Dependabot PR for gha_workflows (#35) @flaxel
- Add staffbase doc (#36) @franzuhlig
- ⏪ revert direct gitops usage (#31) @flaxel
- ⬆️ Manual Dependabot PR for gha_workflows (#30) @flaxel
- Bump docker/setup-buildx-action from 1 to 2 (#27) @dependabot
- Bump docker/login-action from 1 to 2 (#28) @dependabot
- Bump docker/build-push-action from 2 to 3 (#26) @dependabot
Migration
- possibility to use the action as normal action without checkout the code
- renaming of the variables - added dashes, f.e.
dockerimagetodocker-image
Release v3
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"