Skip to content

Commit

Permalink
fix: ubuntu build
Browse files Browse the repository at this point in the history
  • Loading branch information
SpikeHD committed Oct 7, 2024
1 parent 58c0a4d commit 748b995
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -245,22 +245,22 @@ 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
path: src-tauri/target/${{ matrix.config.target }}/release/dorion.tar.gz

# 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
Expand Down

0 comments on commit 748b995

Please sign in to comment.