feat(nova): add DesktopWindowNavButton and append-inner nav slot #26
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 playground to GitHub Pages | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: pages | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout OWD client (workspace deps) | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: owdproject/client | |
| path: client | |
| submodules: recursive | |
| - name: Checkout kit-tailwind | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: owdproject/kit-tailwind | |
| path: client/packages/kit-tailwind | |
| - name: Checkout kit-primevue | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: owdproject/kit-primevue | |
| path: client/packages/kit-primevue | |
| - name: Checkout module-fs | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: owdproject/module-fs | |
| path: client/packages/module-fs | |
| - name: Checkout app-about | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: owdproject/app-about | |
| path: client/apps/app-about | |
| - name: Overlay this theme-nova repo | |
| uses: actions/checkout@v4 | |
| with: | |
| path: client/themes/theme-nova | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - run: npm i -g --force corepack@latest && corepack enable | |
| - name: Install monorepo dependencies | |
| working-directory: client | |
| run: pnpm install --no-frozen-lockfile | |
| - name: Prepare module and playground | |
| working-directory: client/themes/theme-nova | |
| run: pnpm run dev:prepare | |
| - name: Generate static playground | |
| working-directory: client/themes/theme-nova | |
| run: pnpm run dev:generate | |
| env: | |
| NUXT_APP_BASE_URL: /theme-nova/ | |
| - name: Upload Pages artifact | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: client/themes/theme-nova/playground/.output/public | |
| deploy: | |
| needs: build | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |