Skip to content

Commit

Permalink
chore: build ubuntu-22.04 update to ubuntu-24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
amaoo authored Jan 15, 2025
1 parent d726d01 commit 29aca09
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/beta_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ jobs:
run: |
matrix=""
if [ "${{ github.event_name }}" == "schedule" ]; then
matrix="\"windows-latest\",\"ubuntu-22.04\",\"macos-latest\""
matrix="\"windows-latest\",\"ubuntu-24.04\",\"macos-latest\""
retain_days='1'
else
if [ "${{ inputs.platform_windows }}" == "true" ]; then
matrix="${matrix}\"windows-latest\","
fi
if [ "${{ inputs.platform_linux }}" == "true" ]; then
matrix="${matrix}\"ubuntu-22.04\","
matrix="${matrix}\"ubuntu-24.04\","
fi
if [ "${{ inputs.platform_macos }}" == "true" ]; then
matrix="${matrix}\"macos-latest\","
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
cache: "pnpm"

- name: Install dependencies (ubuntu only)
if: matrix.os == 'ubuntu-22.04'
if: matrix.os == 'ubuntu-24.04'
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
Expand All @@ -168,7 +168,7 @@ jobs:
pnpm tauri build --target x86_64-apple-darwin
- name: Build Other app
if: matrix.os == 'windows-latest' || matrix.os == 'ubuntu-22.04'
if: matrix.os == 'windows-latest' || matrix.os == 'ubuntu-24.04'
run: pnpm tauri build

- name: Rename macos
Expand Down

0 comments on commit 29aca09

Please sign in to comment.