Skip to content

Commit d73f346

Browse files
committed
fix ci?
1 parent c7385fc commit d73f346

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

.github/workflows/build-on-push.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@ jobs:
3737
needs: build
3838
runs-on: [ self-hosted, ubuntu-24.04, pkg ]
3939
steps:
40+
41+
- name: Install dependencies
42+
run: |
43+
sudo apt-get update
44+
sudo apt-get install -y reprepro gnupg git unzip openssh-client
45+
4046
- name: Checkout
4147
uses: actions/checkout@v4
4248

@@ -46,11 +52,6 @@ jobs:
4652
repository: ameridroid/apt-repo
4753
path: repo
4854

49-
- name: Install dependencies
50-
run: |
51-
sudo apt-get update
52-
sudo apt-get install -y reprepro gnupg git unzip openssh-client
53-
5455
- uses: actions/download-artifact@v4
5556
with:
5657
name: ${{ github.event.repository.name }}

.github/workflows/release.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@ jobs:
3434
needs: build
3535
runs-on: [ self-hosted, ubuntu-24.04, pkg ]
3636
steps:
37+
38+
- name: Install dependencies
39+
run: |
40+
sudo apt-get update
41+
sudo apt-get install -y reprepro gnupg git unzip openssh-client
42+
3743
- name: Checkout
3844
uses: actions/checkout@v4
3945

@@ -43,11 +49,6 @@ jobs:
4349
repository: ameridroid/apt-repo
4450
path: repo
4551

46-
- name: Install dependencies
47-
run: |
48-
sudo apt-get update
49-
sudo apt-get install -y reprepro gnupg git unzip openssh-client
50-
5152
- uses: actions/download-artifact@v4
5253
with:
5354
name: ${{ github.event.repository.name }}

0 commit comments

Comments
 (0)