feat(mind map): offer the downward layout in the direction bar #2417
Workflow file for this run
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: Deploy Standalone App | |
| on: | |
| # Trigger on push to main branch | |
| push: | |
| branches: | |
| - main | |
| # Only run when app files change | |
| paths: | |
| - 'apps/client/**' | |
| - 'apps/standalone/**' | |
| - 'packages/trilium-core/**' | |
| - '.github/workflows/deploy-app.yml' | |
| # Allow manual triggering from Actions tab | |
| workflow_dispatch: | |
| # Run on pull requests for preview deployments | |
| pull_request: | |
| paths: | |
| - 'apps/client/**' | |
| - 'apps/standalone/**' | |
| - 'packages/trilium-core/**' | |
| - '.github/workflows/deploy-app.yml' | |
| jobs: | |
| build-and-deploy: | |
| name: Build and Deploy App | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| # Required permissions for deployment | |
| permissions: | |
| contents: read | |
| deployments: write | |
| pull-requests: write # For PR preview comments | |
| id-token: write # For OIDC authentication (if needed) | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v7 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: '24' | |
| cache: 'pnpm' | |
| - name: Install Dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Update build info | |
| run: pnpm run chore:update-build-info | |
| - name: Trigger build of app | |
| run: pnpm --filter=standalone build | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| - name: Deploy | |
| uses: ./.github/actions/deploy-to-cloudflare-pages | |
| if: github.repository == vars.REPO_MAIN | |
| with: | |
| project_name: "trilium-app" | |
| comment_body: "🖥️ App preview is ready" | |
| production_url: "https://app.triliumnotes.org" | |
| deploy_dir: "apps/standalone/dist" | |
| cloudflare_api_token: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
| cloudflare_account_id: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |