Skip to content

Commit 0aa0de5

Browse files
committed
drop-pacman-package: also target UCRT64
In git-for-windows/git-sdk-64#117, I am starting the MINGW64 -> UCRT64 migration, and therefore I want to target that branch, too, when uninstalling packages. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 10885ee commit 0aa0de5

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/drop-pacman-package.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ jobs:
2626
sdk:
2727
- name: git-sdk-64
2828
mingw-package-prefix: mingw-w64-x86_64
29+
- name: git-sdk-64
30+
ref: ucrt64
31+
mingw-package-prefix: mingw-w64-ucrt-x86_64
2932
- name: git-sdk-arm64
3033
mingw-package-prefix: mingw-w64-clang-aarch64
3134
- name: git-sdk-32
@@ -51,6 +54,7 @@ jobs:
5154
persist-credentials: true
5255
repository: ${{ github.repository_owner }}/${{ matrix.sdk.name }}
5356
token: ${{ steps.sdk-repo-token.outputs.token }}
57+
ref: ${{ matrix.sdk.ref }}
5458
- name: use the SDK's Bash and git.exe
5559
run: "usr\\bin\\bash.exe -lc 'cygpath -aw /usr/bin >>$GITHUB_PATH && cygpath -aw /cmd >>$GITHUB_PATH'"
5660
- name: Remove ${{ env.PACKAGE }}
@@ -93,7 +97,7 @@ jobs:
9397
gh pr create \
9498
--fill \
9599
--head "$branch" \
96-
--base main 2>&1;
100+
--base ${{ matrix.sdk.ref || 'main' }} 2>&1;
97101
echo $? >/tmp/exit.status
98102
) |
99103
tee -a /tmp/pr-create-output.txt &&

0 commit comments

Comments
 (0)