Skip to content

Commit ea2533a

Browse files
committed
git-artifacts: reset pkgrel=1 between releases
In case some update was necessary between releases, we need to increment the `pkgrel` so that we can deploy new `mingw-w64-git` package versions. However, the next release should reset that `pkgrel` back to 1. Noticed by Matthias Aßhauer in git-for-windows/git#4692 (comment). The script that is used to build `mingw-w64-git` has been adjusted accordingly in git-for-windows/build-extra#534 and with this change, we use the new `--reset-pkgrel` option. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 10edc10 commit ea2533a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/git-artifacts.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ jobs:
287287
printf '#!/bin/sh\n\nexec '$MINGW_PREFIX'/bin/git.exe "$@"\n' >/usr/bin/git &&
288288
(
289289
cd /usr/src/MINGW-packages/mingw-w64-git/src/git &&
290-
/usr/src/build-extra/please.sh build-mingw-w64-git --only-$ARCHITECTURE $BUILD_SRC \
290+
/usr/src/build-extra/please.sh build-mingw-w64-git --reset-pkgrel --only-$ARCHITECTURE $BUILD_SRC \
291291
-o "$GITHUB_WORKSPACE"/artifacts HEAD
292292
) &&
293293
cp bundle-artifacts/ver artifacts/ &&

0 commit comments

Comments
 (0)