Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Display installed ubuntu packages (3) #659

Merged
merged 1 commit into from
Oct 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,16 +162,19 @@ jobs:

- name: Downgrade Git version to 2.46.1
run: |
echo "git version:"
git --version
which git
sudo add-apt-repository -y ppa:git-core/ppa
sudo apt-get update
echo "Installed packages:"
sudo apt list --installed
echo "Downgrading git:"
sudo apt show git
sudo apt-show-versions git
sudo apt-get install -y git=2.46.1
- name: Verify Git version
run: git --version
sudo apt-get install -y git=1:2.46.1
echo "git version:"
git --version
which git

- name: Debug - Display git authors
run: |
Expand Down