Skip to content

Commit

Permalink
wip: updater
Browse files Browse the repository at this point in the history
  • Loading branch information
sekwah41 committed Oct 25, 2023
1 parent 3ac21b7 commit 511e1c9
Show file tree
Hide file tree
Showing 9 changed files with 686 additions and 106 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/build-tauri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,18 @@ jobs:
yarn install --immutable --network-timeout 120000
- name: Build
run: yarn build:tauri
env:
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
# Possibly set up some basic unit testing just to make sure parts render and none of the libraries are straight up breaking
- uses: actions/upload-artifact@v2
with:
name: built-app-${{ matrix.name }}
# For now just upload the whole bundle, but we can be more specific later
path: |
app/tauri/target/release/bundle/deb/*.deb
app/tauri/target/release/bundle/appimage/*.AppImage
app/tauri/target/release/bundle/msi/*.msi
app/tauri/target/release/bundle/dmg/*.dmg
app/tauri/target/release/bundle/macos/*.app
app/tauri/target/release/bundle/**
# app/tauri/target/release/bundle/deb/*.deb
# app/tauri/target/release/bundle/appimage/*.AppImage
# app/tauri/target/release/bundle/msi/*.msi
# app/tauri/target/release/bundle/dmg/*.dmg
# app/tauri/target/release/bundle/macos/*.app
3 changes: 2 additions & 1 deletion app/shareables/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"scripts": {
"prepare": "yarn build",
"start": "rollup -c -w",
"build": "rollup -c"
"build": "rollup -c",
"dev:tauri": "rollup -c -w"
}
}
Loading

0 comments on commit 511e1c9

Please sign in to comment.