Skip to content

Commit

Permalink
ready to make some sample builds
Browse files Browse the repository at this point in the history
  • Loading branch information
louisgv committed Jun 3, 2023
1 parent b5d72ae commit 3740ed9
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/tauri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ jobs:
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libayatana-appindicator3-dev librsvg2-dev
- name: Rust setup
uses: dtolnay/rust-toolchain@stable

- name: Rust cache
uses: swatinem/rust-cache@v2
with:
workspaces: "./app/desktop/src-tauri -> target"

- name: install node
uses: actions/setup-node@v3
with:
Expand All @@ -31,6 +39,7 @@ jobs:
uses: pnpm/action-setup@v2
with:
version: 8
cache: "pnpm" # Set this to npm, yarn or pnpm.

- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -65,6 +74,13 @@ jobs:
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}

ENABLE_CODE_SIGNING: ${{ secrets.APPLE_CERTIFICATE }}
APPLE_CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE }}
APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
APPLE_SIGNING_IDENTITY: ${{ secrets.APPLE_SIGNING_IDENTITY }}
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }}

with:
releaseName: "v__VERSION__" # tauri-action replaces \_\_VERSION\_\_ with the app version.
releaseBody: "See the assets to download and install this version."
Expand Down

1 comment on commit 3740ed9

@vercel
Copy link

@vercel vercel bot commented on 3740ed9 Jun 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.