Skip to content

Commit

Permalink
use release target
Browse files Browse the repository at this point in the history
  • Loading branch information
Bwc9876 committed Aug 1, 2023
1 parent d155cdc commit 5f9bd77
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/nightly_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Setup Rust Cache
uses: Swatinem/rust-cache@v2
with:
shared-key: ${{ runner.os }}-rust-cache-${{ hashFiles('Cargo.lock') }}
shared-key: v1-${{ runner.os }}-rust-cache-${{ hashFiles('Cargo.lock') }}

- name: Setup Node
uses: actions/setup-node@v3
Expand Down Expand Up @@ -71,15 +71,15 @@ jobs:
run: pnpm add -g @tauri-apps/cli

- name: Build GUI
run: tauri build --ci -d -b $([[ ${{ matrix.platform }} = 'windows-latest' ]] && echo 'msi nsis' || echo 'appimage deb')
run: tauri build --ci -b $([[ ${{ matrix.platform }} = 'windows-latest' ]] && echo 'msi nsis' || echo 'appimage deb')
shell: bash

- name: Upload GUI
uses: actions/upload-artifact@v3
with:
name: GUI-Nightly
path: |
target/debug/bundle/**/*.deb
target/debug/bundle/**/*.AppImage
target/debug/bundle/**/*.msi
target/debug/bundle/**/*.exe
target/release/bundle/**/*.deb
target/release/bundle/**/*.AppImage
target/release/bundle/**/*.msi
target/release/bundle/**/*.exe

0 comments on commit 5f9bd77

Please sign in to comment.