Skip to content

Commit

Permalink
GitHub Actions: Fix release.yml
Browse files Browse the repository at this point in the history
helgoboss committed Apr 9, 2024
1 parent d3f3431 commit 77a5fe5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ jobs:
args: '--bundles none'
src: 'target/release/reaboot.exe'
dest: 'reaboot-x64.exe'
- platform: 'ubuntu-20.04' # for Tauri v1 you could replace this with ubuntu-20.04.
- platform: 'ubuntu-22.04' # for Tauri v1 you could replace this with ubuntu-20.04.
args: '--bundles deb'
src: 'target/release/bundle/deb/reaboot_*_amd64.deb'
dest: 'reaboot-x86_64.deb'
@@ -35,7 +35,7 @@ jobs:
- uses: actions/checkout@v4

- name: install dependencies (ubuntu only)
if: matrix.settings.platform == 'ubuntu-20.04' # This must match the platform value defined above.
if: matrix.settings.platform == 'ubuntu-22.04' # This must match the platform value defined above.
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
@@ -75,8 +75,8 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.dest }}
path: ${{ matrix.src }}
name: ${{ matrix.settings.dest }}
path: ${{ matrix.settings.src }}

# - uses: tauri-apps/tauri-action@v0
# env:

0 comments on commit 77a5fe5

Please sign in to comment.