Skip to content

Commit

Permalink
workflows: fix submodule init
Browse files Browse the repository at this point in the history
  • Loading branch information
R1kaB3rN committed Jan 7, 2025
1 parent 93f87e9 commit e9df999
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-umu-debian-12.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Initialize submodules
run: |
git submodule update --init --recursive
- name: Copy debian packaging folder to the repository root
run: cp -rvf ./packaging/deb/debian ./debian

- name: Update APT Cache
run: apt update -y

- name: Install build dependencies
run: apt install -y dh-make dpkg-dev
run: apt install -y dh-make dpkg-dev git

- name: Initialize submodules
run: |
git submodule update --init --recursive
- name: Setup dh_make quilt files
run: LOGNAME=root dh_make --createorig -y -l -p umu-launcher_1.1.4 || true
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/build-umu-ubuntu-noble.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,19 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Initialize submodules
run: |
git submodule update --init --recursive
- name: Copy debian packaging folder to the repository root
run: cp -rvf ./packaging/deb/ubuntu ./debian

- name: Update APT Cache
run: apt update -y

- name: Install build dependencies
run: apt install -y dh-make dpkg-dev
run: apt install -y dh-make dpkg-dev git

- name: Initialize submodules
run: |
git submodule update --init --recursive
- name: Setup dh_make quilt files
run: LOGNAME=root dh_make --createorig -y -l -p umu-launcher_1.1.4 || true
Expand Down

0 comments on commit e9df999

Please sign in to comment.