Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): upgrade Nuxt Studio CI #7

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions .github/workflows/studio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ run-name: studio nuxt build
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
branches:
- 'main'

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down Expand Up @@ -34,7 +35,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Identify package manager
id: pkgman
Expand All @@ -44,12 +45,12 @@ jobs:
echo "cache=$cache" >> $GITHUB_OUTPUT
echo "package_manager=$package_manager" >> $GITHUB_OUTPUT

- uses: pnpm/action-setup@v2.2.4
- uses: pnpm/action-setup@v2.4.0
if: ${{ steps.pkgman.outputs.package_manager == 'pnpm' }}
name: Install pnpm
id: pnpm-install
with:
version: 7
version: 8

- uses: actions/setup-node@v3
with:
Expand All @@ -63,12 +64,14 @@ jobs:
run: ${{ steps.pkgman.outputs.package_manager }} add -D @nuxthq/studio

- name: Create .nuxtrc
run: echo 'modules[]=@nuxthq/studio' > .nuxtrc
run: echo $'\nautoImport=true\nmodules[]=@nuxthq/studio' >> .nuxtrc

- name: Generate
run: ${{ steps.pkgman.outputs.package_manager }} nuxi generate
run: npx nuxi generate
env:
NUXT_PUBLIC_STUDIO_API_URL: https://api.nuxt.studio
NUXT_PUBLIC_STUDIO_TOKENS: 2d973abe61202e5f9d9b2869d4a19f024f3c0472162adce3935b762e39fe82f4


- name: Add .nojekyll file
run: touch .output/public/.nojekyll
Expand Down