File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed
Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ FROM $BASE_IMAGE AS builder
44
55# Gems have to be ARG and ENV because they are used as reference in the Gemfile
66ARG RUBYGEM_PUPPET
7- ENV RUBYGEM_PUPPET ${RUBYGEM_PUPPET:-8.8.1}
7+ ENV RUBYGEM_PUPPET= ${RUBYGEM_PUPPET:-8.8.1}
88
99ARG RUBYGEM_FACTER
1010ENV RUBYGEM_FACTER=${RUBYGEM_FACTER:-4.8.0}
@@ -76,7 +76,7 @@ LABEL org.label-schema.maintainer="Voxpupuli Team <voxpupuli@groups.io>" \
7676ARG APK_JQ=1.7.1-r0
7777ARG APK_YAMLLINT=1.35.1-r1
7878ARG APK_GIT=2.45.2-r0
79- ARG APK_CURL=8.10.1-r0
79+ ARG APK_CURL=8.11.0-r2
8080
8181RUN apk update \
8282 && apk upgrade \
Original file line number Diff line number Diff line change @@ -10,16 +10,17 @@ Your attention to this specific branch naming convention is essential for accura
1010``` shell
1111export RELEASE_VERSION=" X.Y.Z"
1212git switch main
13- git pull -r
13+ git pull --rebase
1414git switch -c release-v$RELEASE_VERSION
1515
1616bundle config set --local path vendor/bundle
1717bundle config set --local with ' release'
1818bundle install
1919
2020CHANGELOG_GITHUB_TOKEN=" token_MC_tokenface" bundle exec rake changelog
21- git commit -am " Release v${RELEASE_VERSION} "
22- git push origin release-v$RELEASE_VERSION
21+
22+ git commit --all --message " Release v${RELEASE_VERSION} "
23+ git push --set-upstream origin HEAD
2324```
2425
2526Then open a PR, discuss and merge.
@@ -28,7 +29,7 @@ Then open a PR, discuss and merge.
2829
2930``` shell
3031git switch main
31- git pull -r
32+ git pull --rebase
3233git tag v$RELEASE_VERSION -m " v$RELEASE_VERSION "
3334git push --tags
3435```
Original file line number Diff line number Diff line change 3838 "apk_jq" : " 1.7.1-r0" ,
3939 "apk_yamllint" : " 1.35.1-r1" ,
4040 "apk_git" : " 2.45.2-r0" ,
41- "apk_curl" : " 8.10.1-r0 "
41+ "apk_curl" : " 8.11.0-r2 "
4242 }
4343 ]
4444}
You can’t perform that action at this time.
0 commit comments