Skip to content

Commit f8bac8b

Browse files
authored
validate-install-from-source: fix debian (#1301)
Based on [this documentation](https://learn.microsoft.com/en-us/dotnet/core/install/linux-debian#supported-distributions), it appears that .NET is not yet supported on Debian Bookworm (12). As a result, attempting to install .NET in a container running Bookworm [led to failures](https://github.com/ldennington/git-credential-manager/actions/runs/5326250435/jobs/9648032190). This change locks the validation workflow into using Bullseye to work around this issue. It also adds a `workflow_dispatch` trigger to make running `validate-install-from-source` easier in the future. A successful workflow run with these changes can be found [here](https://github.com/ldennington/git-credential-manager/actions/runs/5326464820).
2 parents 2be0275 + d1044de commit f8bac8b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/validate-install-from-source.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: validate-install-from-source
22

33
on:
4+
workflow_dispatch:
45
push:
56
branches:
67
- main
@@ -14,7 +15,7 @@ jobs:
1415
matrix:
1516
vector:
1617
- image: ubuntu
17-
- image: debian
18+
- image: debian:bullseye
1819
- image: fedora
1920
# Centos no longer officially maintains images on Docker Hub. However,
2021
# tgagor is a contributor who pushes updated images weekly, which should

0 commit comments

Comments
 (0)