2024 Crescendo: Final Test 3 #15
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 And Upload | |
on: | |
release: | |
types: | |
- published | |
jobs: | |
build-and-upload: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
permissions: | |
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing | |
contents: write | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Setup Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: Setup pNPM | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Setup NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 21 | |
cache: 'pnpm' | |
cache-dependency-path: pnpm-lock.yaml | |
- name: Install dependencies for Tauri (ubuntu only) | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf | |
- name: Load cached node_modules | |
uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
~/.pnpm-store | |
key: ${{ runner.os }}-pnpm-${{ hashFiles('pnpm-lock.yaml') }} | |
restore-keys: ${{ runner.os }}-pnpm- | |
- name: Load cached Cargo | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
src-tauri/target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('src-tauri/Cargo.lock') }} | |
restore-keys: ${{ runner.os }}-cargo- | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build the app | |
run: pnpm tauri build | |
- name: (.dmg) Upload files to a GitHub release | |
uses: svenstaro/[email protected] | |
continue-on-error: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
file_glob: true | |
tag: ${{ github.ref }} | |
file: src-tauri/target/release/bundle/*/*.dmg | |
- name: (.msi) Upload files to a GitHub release | |
uses: svenstaro/[email protected] | |
continue-on-error: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
file_glob: true | |
tag: ${{ github.ref }} | |
file: src-tauri/target/release/bundle/*/*.msi | |
- name: (.deb) Upload files to a GitHub release | |
uses: svenstaro/[email protected] | |
continue-on-error: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
file_glob: true | |
tag: ${{ github.ref }} | |
file: src-tauri/target/release/bundle/*/*.deb | |
- name: (.AppImage) Upload files to a GitHub release | |
uses: svenstaro/[email protected] | |
continue-on-error: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
file_glob: true | |
tag: ${{ github.ref }} | |
file: src-tauri/target/release/bundle/*/*.AppImage | |
- name: (.app) Upload files to a GitHub release | |
uses: svenstaro/[email protected] | |
continue-on-error: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
file_glob: true | |
tag: ${{ github.ref }} | |
file: src-tauri/target/release/bundle/*/*.app |