fix: infinite loop error stream #1421 #1387
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: "test" | |
on: [pull_request] | |
# This workflow will build your tauri app without uploading it anywhere. | |
jobs: | |
test-webapp: | |
strategy: | |
fail-fast: false | |
matrix: | |
settings: | |
- platform: "macos-latest" | |
target: "x86_64-apple-darwin" | |
args: "--target x86_64-apple-darwin" | |
- platform: "macos-latest" | |
target: "aarch64-apple-darwin" | |
args: "--target aarch64-apple-darwin" | |
- platform: "ubuntu-20.04" | |
target: "x86_64-unknown-linux-gnu" | |
args: "--target x86_64-unknown-linux-gnu" | |
- platform: "windows-latest" | |
target: "x86_64-pc-windows-msvc" | |
args: "--target x86_64-pc-windows-msvc" | |
runs-on: ${{ matrix.settings.platform }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: install Rust stable | |
uses: dtolnay/rust-toolchain@stable | |
- name: install dependencies (ubuntu only) | |
if: matrix.settings.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: Rustup add target | |
run: rustup target add ${{ matrix.settings.target }} | |
- name: install frontend dependencies | |
run: yarn install # change this to npm or pnpm depending on which one you use | |
#- name: import windows certificate | |
# if: matrix.settings.platform == 'windows-latest' | |
# env: | |
# WINDOWS_CERTIFICATE: ${{ secrets.WINDOWS_CERTIFICATE }} | |
# WINDOWS_CERTIFICATE_PASSWORD: ${{ secrets.WINDOWS_CERTIFICATE_PASSWORD }} | |
# run: | | |
# New-Item -ItemType directory -Path certificate | |
# Set-Content -Path certificate/tempCert.txt -Value $env:WINDOWS_CERTIFICATE | |
# certutil -decode certificate/tempCert.txt certificate/certificate.pfx | |
# Remove-Item -path certificate -include tempCert.txt | |
# Import-PfxCertificate -FilePath certificate/certificate.pfx -CertStoreLocation Cert:\CurrentUser\My -Password (ConvertTo-SecureString -String $env:WINDOWS_CERTIFICATE_PASSWORD -Force -AsPlainText) | |
# If tagName and releaseId are omitted tauri-action will only build the app and won't try to upload any asstes. | |
- uses: tauri-apps/tauri-action@v0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} | |
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }} | |
with: | |
args: ${{ matrix.settings.args}} |