Skip to content

Commit 627c2a5

Browse files
committed
Update workflow to use Ubuntu 22.04 for build jobs
1 parent 589c44f commit 627c2a5

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/desktop.build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
build-desktop:
1010
strategy:
1111
matrix:
12-
os: [ubuntu-latest, windows-latest, macos-latest]
12+
os: [ubuntu-22.04, windows-latest, macos-latest]
1313
include:
14-
- os: ubuntu-latest
14+
- os: ubuntu-22.04
1515
os_name: linux
1616
asset_suffix_cli: lin-x64
1717
asset_suffix_gui: gui-lin-x64
@@ -36,6 +36,7 @@ jobs:
3636
runs-on: ${{ matrix.os }}
3737

3838
steps:
39+
3940
- name: Checkout code
4041
uses: actions/checkout@v4
4142

@@ -94,7 +95,7 @@ jobs:
9495
path: artifacts/
9596

9697
build-raspberry-pi-cli:
97-
runs-on: ubuntu-latest
98+
runs-on: ubuntu-22.04
9899
steps:
99100
- name: Checkout code
100101
uses: actions/checkout@v4
@@ -130,7 +131,7 @@ jobs:
130131
path: artifacts/fiscalberry-cli-pi-arm64
131132

132133
create-release:
133-
runs-on: ubuntu-latest
134+
runs-on: ubuntu-22.04
134135
needs: [build-desktop, build-raspberry-pi-cli] # Wait for all builds
135136
permissions:
136137
contents: write # Needed to create release and upload assets

0 commit comments

Comments
 (0)