fix: push to separate homebrew tap repository #4
This file contains hidden or 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: Build and Release Tauri App | ||
|
Check failure on line 1 in .github/workflows/tauri.yml
|
||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| tags: | ||
| - 'v*' | ||
| repository_dispatch: | ||
| types: [build-tauri] | ||
| workflow_dispatch: | ||
| inputs: | ||
| tag: | ||
| description: 'Version tag (e.g., v0.3.0)' | ||
| required: false | ||
| type: string | ||
| env: | ||
| NODE_VERSION: '20' | ||
| RUST_VERSION: '1.75' | ||
| LUMIS_REPO: 'melandlabs/lumis' | ||
| jobs: | ||
| get-version: | ||
| runs-on: ubuntu-latest | ||
| outputs: | ||
| version: ${{ steps.version.outputs.version }} | ||
| steps: | ||
| - id: version | ||
| run: | | ||
| if [ "${{ github.event.inputs.tag }}" != "" ]; then | ||
| echo "version=${{ github.event.inputs.tag }}" >> $GITHUB_OUTPUT | ||
| elif [[ "${{ github.ref }}" == refs/tags/v* ]]; then | ||
| echo "version=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT | ||
| else | ||
| echo "version=" >> $GITHUB_OUTPUT | ||
| fi | ||
| build-tauri-macos: | ||
| needs: get-version | ||
| if: needs.get-version.outputs.version != '' | ||
| permissions: | ||
| contents: write | ||
| runs-on: macos-latest | ||
| steps: | ||
| - name: Checkout release repo | ||
| uses: actions/checkout@v4 | ||
| - name: Clone lumis source code | ||
| run: | | ||
| git clone https://github.com/${{ env.LUMIS_REPO }}.git lumis | ||
| cd lumis | ||
| git checkout ${{ needs.get-version.outputs.version }} | ||
| - name: Setup Node.js | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: ${{ env.NODE_VERSION }} | ||
| cache: 'pnpm' | ||
| - name: Setup Rust | ||
| uses: dtolnay/rust-action@stable | ||
| with: | ||
| toolchain: ${{ env.RUST_VERSION }} | ||
| - name: Install Rust targets | ||
| run: | | ||
| rustup target add aarch64-apple-darwin | ||
| rustup target add x86_64-apple-darwin | ||
| - name: Install pnpm | ||
| uses: pnpm/action-setup@v2 | ||
| with: | ||
| version: 8 | ||
| - name: Get pnpm store directory | ||
| shell: bash | ||
| run: | | ||
| echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | ||
| - name: Setup pnpm cache | ||
| uses: actions/cache@v3 | ||
| with: | ||
| path: ${{ env.STORE_PATH }} | ||
| key: ${{ runner.os }}-pnpm-store-${{ hashFiles('lumis/**/pnpm-lock.yaml') }} | ||
| restore-keys: | | ||
| ${{ runner.os }}-pnpm-store- | ||
| - name: Install dependencies | ||
| working-directory: ./lumis | ||
| run: pnpm install --frozen-lockfile | ||
| - name: Build Tauri app (Apple Silicon) | ||
| working-directory: ./lumis/apps/web | ||
| uses: tauri-apps/tauri-action@v0 | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| 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 }} | ||
| APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} | ||
| with: | ||
| tagName: ${{ needs.get-version.outputs.version }} | ||
| releaseName: 'Lumis ${{ needs.get-version.outputs.version }}' | ||
| releaseBody: 'See the assets to download this version and install.' | ||
| releaseDraft: true | ||
| prerelease: false | ||
| args: --target aarch64-apple-darwin | ||
| build-tauri-windows: | ||
| needs: get-version | ||
| if: needs.get-version.outputs.version != '' | ||
| runs-on: windows-latest | ||
| steps: | ||
| - name: Checkout release repo | ||
| uses: actions/checkout@v4 | ||
| - name: Clone lumis source code | ||
| run: | | ||
| git clone https://github.com/${{ env.LUMIS_REPO }}.git lumis | ||
| cd lumis | ||
| git checkout ${{ needs.get-version.outputs.version }} | ||
| - name: Setup Node.js | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: ${{ env.NODE_VERSION }} | ||
| cache: 'pnpm' | ||
| - name: Setup Rust | ||
| uses: dtolnay/rust-action@stable | ||
| with: | ||
| toolchain: ${{ env.RUST_VERSION }} | ||
| - name: Install pnpm | ||
| uses: pnpm/action-setup@v2 | ||
| with: | ||
| version: 8 | ||
| - name: Install dependencies | ||
| working-directory: ./lumis | ||
| run: pnpm install --frozen-lockfile | ||
| - name: Build Tauri app (Windows) | ||
| working-directory: ./lumis/apps/web | ||
| uses: tauri-apps/tauri-action@v0 | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| with: | ||
| tagName: ${{ needs.get-version.outputs.version }} | ||
| releaseName: 'Lumis ${{ needs.get-version.outputs.version }}' | ||
| releaseBody: 'See the assets to download this version and install.' | ||
| releaseDraft: true | ||
| prerelease: false | ||
| build-tauri-linux: | ||
| needs: get-version | ||
| if: needs.get-version.outputs.version != '' | ||
| runs-on: ubuntu-22.04 | ||
| steps: | ||
| - name: Checkout release repo | ||
| uses: actions/checkout@v4 | ||
| - name: Clone lumis source code | ||
| run: | | ||
| git clone https://github.com/${{ env.LUMIS_REPO }}.git lumis | ||
| cd lumis | ||
| git checkout ${{ needs.get-version.outputs.version }} | ||
| - name: Setup Node.js | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: ${{ env.NODE_VERSION }} | ||
| cache: 'pnpm' | ||
| - name: Setup Rust | ||
| uses: dtolnay/rust-action@stable | ||
| with: | ||
| toolchain: ${{ env.RUST_VERSION }} | ||
| - name: Install Rust target | ||
| run: | | ||
| rustup target add x86_64-unknown-linux-gnu | ||
| - name: Install pnpm | ||
| uses: pnpm/action-setup@v2 | ||
| with: | ||
| version: 8 | ||
| - name: Install dependencies | ||
| working-directory: ./lumis | ||
| run: pnpm install --frozen-lockfile | ||
| - name: Install Linux build dependencies | ||
| run: | | ||
| sudo apt-get update | ||
| sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf | ||
| - name: Build Tauri app (Linux) | ||
| working-directory: ./lumis/apps/web | ||
| uses: tauri-apps/tauri-action@v0 | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| with: | ||
| tagName: ${{ needs.get-version.outputs.version }} | ||
| releaseName: 'Lumis ${{ needs.get-version.outputs.version }}' | ||
| releaseBody: 'See the assets to download this version and install.' | ||
| releaseDraft: true | ||
| prerelease: false | ||
| args: --target x86_64-unknown-linux-gnu | ||