Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: build platform 22.04 update to 24.04 #944

Merged
merged 1 commit into from
Jan 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading