From 748b995452514b0d2249e2a01f9024107fccaf53 Mon Sep 17 00:00:00 2001 From: SpikeHD <25207995+SpikeHD@users.noreply.github.com> Date: Mon, 7 Oct 2024 10:08:26 -0700 Subject: [PATCH] fix: ubuntu build --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 442f884..d82f0ee 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -106,7 +106,7 @@ jobs: sudo apt-get update - name: (Linux) Install dependencies - if: matrix.config.platform == 'ubuntu-latest' + if: matrix.config.platform == 'ubuntu-22.04' run: | sudo apt-get update sudo apt-get install -y libwebkit2gtk-4.1-dev \ @@ -216,7 +216,7 @@ jobs: extension/ - name: (Linux) Compress build - if: matrix.config.platform == 'ubuntu-latest' + if: matrix.config.platform == 'ubuntu-22.04' run: cd src-tauri/target/${{ matrix.config.target }}/release && tar -czvf dorion.tar.gz Dorion updater .portable ./plugins ./themes ./injection ./icons # Windows portable @@ -245,7 +245,7 @@ jobs: # Ubuntu portable - name: (Linux) Upload portable - if: matrix.config.platform == 'ubuntu-latest' + if: matrix.config.platform == 'ubuntu-22.04' uses: actions/upload-artifact@v4 with: name: dorion-${{ matrix.config.target }}-portable @@ -253,14 +253,14 @@ jobs: # Ubuntu deb - name: (Linux) Upload .deb - if: matrix.config.platform == 'ubuntu-latest' + if: matrix.config.platform == 'ubuntu-22.04' uses: actions/upload-artifact@v4 with: name: dorion-${{ matrix.config.target }}-deb path: src-tauri/target/${{ matrix.config.target }}/release/bundle/deb/*.deb - name: (Linux) Upload .appimage - if: matrix.config.platform == 'ubuntu-latest' + if: matrix.config.platform == 'ubuntu-22.04' uses: actions/upload-artifact@v4 with: name: dorion-${{ matrix.config.target }}-appimage