-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into renovate/configure
- Loading branch information
Showing
910 changed files
with
214,225 additions
and
22,971 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
name: studio-nuxt-build | ||
run-name: studio nuxt build | ||
|
||
on: | ||
# Runs on pushes targeting the default branch | ||
push: | ||
branches: | ||
- 'develop' | ||
|
||
# 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: docs | ||
|
||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
node: [18] | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Identify package manager | ||
id: pkgman | ||
run: | | ||
cache=`[ -f "docs/pnpm-lock.yaml" ] && echo "pnpm" || ([ -f "docs/package-lock.json" ] && echo "npm" || ([ -f "docs/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/[email protected] | ||
if: ${{ steps.pkgman.outputs.package_manager == 'pnpm' }} | ||
name: Install pnpm | ||
id: pnpm-install | ||
with: | ||
version: 9.0.6 | ||
|
||
- uses: actions/setup-node@v4 | ||
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 generate | ||
env: | ||
NUXT_PUBLIC_STUDIO_API_URL: https://api.nuxt.studio | ||
NUXT_PUBLIC_STUDIO_TOKENS: 7ae2515146ef474b6daa2184d4cdf98a00e724791e002e791a928ee41fe5e267 | ||
|
||
- name: Add .nojekyll file | ||
run: touch .output/public/.nojekyll | ||
|
||
# Deployment job | ||
- name: Deploy 🚀 | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
folder: docs/.output/public |
Oops, something went wrong.