From 56aed359c196f630b549132212bc48e1123dffae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Fr=C3=B6hlich?= Date: Sat, 8 Jun 2024 18:50:43 +0200 Subject: [PATCH] chore(deployment): add workflow file --- .github/workflows/studio.yml | 80 ++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 .github/workflows/studio.yml diff --git a/.github/workflows/studio.yml b/.github/workflows/studio.yml new file mode 100644 index 00000000..3e9dc84d --- /dev/null +++ b/.github/workflows/studio.yml @@ -0,0 +1,80 @@ + +name: studio-nuxt-build +run-name: studio nuxt build + +on: + # Runs on pushes targeting the default branch + push: + branches: + - 'main' + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Add write workflow permissions +permissions: + contents: write + +# Allow one concurrent deployment +concurrency: + group: "pages" + cancel-in-progress: true + +jobs: + # Build job + build-and-deploy: + runs-on: ${{ matrix.os }} + defaults: + run: + working-directory: . + + strategy: + matrix: + os: [ubuntu-latest] + node: [18] + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Identify package manager + id: pkgman + run: | + cache=`[ -f "./pnpm-lock.yaml" ] && echo "pnpm" || ([ -f "./package-lock.json" ] && echo "npm" || ([ -f "./yarn.lock" ] && echo "yarn" || echo ""))` + package_manager=`[ ! -z "$cache" ] && echo "$cache" || echo "pnpm"` + echo "cache=$cache" >> $GITHUB_OUTPUT + echo "package_manager=$package_manager" >> $GITHUB_OUTPUT + + - uses: pnpm/action-setup@v2.4.0 + if: ${{ steps.pkgman.outputs.package_manager == 'pnpm' }} + name: Install pnpm + id: pnpm-install + with: + version: 8 + + - uses: actions/setup-node@v3 + with: + version: ${{ matrix.node }} + cache: ${{ steps.pkgman.outputs.cache }} + + - name: Install dependencies + run: ${{ steps.pkgman.outputs.package_manager }} install + + - name: Install @nuxthq/studio + run: ${{ steps.pkgman.outputs.package_manager }} add -D @nuxthq/studio + + - name: Create .nuxtrc + run: echo $'\nautoImport=true\nmodules[]=@nuxthq/studio' >> .nuxtrc + + - name: Generate + run: npx nuxi build --preset github_pages + env: + NUXT_PUBLIC_STUDIO_API_URL: https://api.nuxt.studio + NUXT_PUBLIC_STUDIO_TOKENS: 11bbed968f6472a64121ce39b4b2a2a5adf3b22ed737470c7d2405fd9126bf39 + NUXT_UI_PRO_LICENSE: ${{ secrets.NUXT_UI_PRO_LICENSE }} + + # Deployment job + - name: Deploy 🚀 + uses: JamesIves/github-pages-deploy-action@v4 + with: + folder: ./.output/public