chore(deps): bump webpki from 0.22.0 to 0.22.2 #60
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
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
name: Package | |
jobs: | |
packaging-test: | |
name: Packaging test | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [ macos-latest, ubuntu-20.04, windows-latest ] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Setup Cargo Toolchain (Mac) 🛎️ | |
uses: dtolnay/rust-toolchain@stable | |
if: matrix.platform == 'macos-latest' | |
with: | |
targets: aarch64-apple-darwin | |
- name: Setup Cargo Toolchain 🛎️ | |
uses: dtolnay/rust-toolchain@stable | |
if: matrix.platform != 'macos-latest' | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
key: ${{ matrix.platform }} | |
- name: Install Dependencies (Ubuntu only) | |
if: matrix.platform == 'ubuntu-20.04' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libwebkit2gtk-4.0-dev \ | |
build-essential \ | |
curl \ | |
wget \ | |
libgtk-3-dev \ | |
libayatana-appindicator3-dev \ | |
librsvg2-dev | |
- name: Cache Pnpm Modules | |
uses: actions/cache@v3 | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}- | |
- uses: pnpm/action-setup@v2 | |
name: Install App Dependencies | |
with: | |
version: latest | |
run_install: true | |
- uses: tauri-apps/tauri-action@dev | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
args: ${{ matrix.platform == 'macos-latest' && '-v --target universal-apple-darwin' || '-v' }} |