App v1.8.0 #94
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- windows-builds | |
tags: | |
- app-v* | |
jobs: | |
build-release: | |
runs-on: ${{ matrix.platform }} | |
strategy: | |
matrix: | |
platform: [windows-latest, macos-latest, ubuntu-20.04] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20.4.x' | |
# Make sure mac x64 gets the aarch64 toolchain too | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: x86_64-apple-darwin,aarch64-apple-darwin | |
if: matrix.platform == 'macos-latest' | |
# Otherwise just make sure rust is set up | |
- uses: dtolnay/rust-toolchain@stable | |
if: matrix.platform != 'macos-latest' | |
- name: install dependencies (ubuntu only) | |
if: matrix.platform == 'ubuntu-20.04' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf | |
- name: Install dependencies | |
run: yarn --immutable | |
- name: Build Rivet | |
run: yarn build | |
env: | |
NODE_OPTIONS: --max-old-space-size=6000 | |
- name: Build Tauri App | |
uses: tauri-apps/tauri-action@v0 | |
with: | |
projectPath: packages/app | |
tauriScript: yarn tauri | |
tagName: app-v__VERSION__ | |
releaseName: 'Rivet IDE v__VERSION__' | |
releaseBody: 'See the assets to download this version and install.' | |
releaseDraft: true | |
prerelease: false | |
updaterJsonKeepUniversal: true | |
args: ${{ matrix.platform == 'macos-latest' && ' --target universal-apple-darwin --verbose' || '--verbose' }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} | |
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }} | |
APPLE_SIGNING_IDENTITY: ${{ secrets.APPLE_SIGNING_IDENTITY }} | |
APPLE_ID: ${{ secrets.APPLE_ID }} | |
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }} | |
APPLE_CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE }} | |
APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }} | |
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} | |
NODE_OPTIONS: --max-old-space-size=6000 |