Skip to content

Commit a8335c6

Browse files
committed
Add git install
1 parent 2c12027 commit a8335c6

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@ jobs:
5858
- name: Checkout
5959
uses: actions/checkout@v4
6060

61+
- name: Install Git
62+
run: |
63+
sudo apt-get update
64+
sudo apt-get install git -y
6165
- name: Set up SSH agent (for service-registry)
6266
uses: webfactory/[email protected]
6367
with:
@@ -89,7 +93,10 @@ jobs:
8993

9094
steps:
9195
- uses: actions/checkout@v3
92-
96+
- name: Install Git
97+
run: |
98+
sudo apt-get update
99+
sudo apt-get install git -y
93100
- name: Set up SSH agent (for service-registry)
94101
uses: webfactory/[email protected]
95102
with:
@@ -120,7 +127,10 @@ jobs:
120127
with:
121128
# for Sentry releases
122129
fetch-depth: 0
123-
130+
- name: Install Git
131+
run: |
132+
sudo apt-get update
133+
sudo apt-get install git -y
124134
- name: Set up SSH agent (for service-registry)
125135
uses: webfactory/[email protected]
126136
with:

.github/workflows/migration.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ jobs:
3333
steps:
3434
- name: Checkout
3535
uses: actions/checkout@v4
36-
36+
- name: Install Git
37+
run: |
38+
sudo apt-get update
39+
sudo apt-get install git -y
3740
- name: Set up SSH agent (for service-registry)
3841
uses: webfactory/[email protected]
3942
with:

0 commit comments

Comments
 (0)