Skip to content

Commit 3d89ad8

Browse files
Additional package test (#39)
1 parent 4df0304 commit 3d89ad8

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/workflows/release.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
args: '--target aarch64-apple-darwin'
4848
- platform: 'macos-latest' # for Intel based macs.
4949
args: '--target x86_64-apple-darwin'
50-
- platform: 'ubuntu-22.04'
50+
- platform: 'ubuntu-24.04'
5151
args: ''
5252
- platform: 'windows-latest'
5353
args: ''
@@ -68,10 +68,19 @@ jobs:
6868
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
6969

7070
- name: install dependencies (ubuntu only)
71-
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
71+
if: matrix.platform == 'ubuntu-24.04' # This must match the platform value defined above.
7272
run: |
7373
sudo apt-get update
74-
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
74+
sudo apt-get install -y \
75+
libwebkit2gtk-4.1-0=2.44.0-2 \
76+
libwebkit2gtk-4.1-dev=2.44.0-2 \
77+
libjavascriptcoregtk-4.1-0=2.44.0-2 \
78+
libjavascriptcoregtk-4.1-dev=2.44.0-2 \
79+
gir1.2-javascriptcoregtk-4.1=2.44.0-2 \
80+
gir1.2-webkit2-4.1=2.44.0-2 \
81+
libappindicator3-dev \
82+
librsvg2-dev \
83+
patchelf
7584
7685
- name: Rust cache
7786
uses: swatinem/rust-cache@v2
@@ -89,4 +98,5 @@ jobs:
8998
releaseId: ${{ env.RELEASE_ID }}
9099
releaseDraft: true
91100
prerelease: true
101+
includeDebug: true
92102
args: ${{ matrix.args }}

0 commit comments

Comments
 (0)