diff --git a/.github/workflows/nuxthub.yml b/.github/workflows/nuxthub.yml new file mode 100644 index 0000000..52dab5d --- /dev/null +++ b/.github/workflows/nuxthub.yml @@ -0,0 +1,33 @@ +name: Deploy to NuxtHub +on: push + +jobs: + deploy: + name: "Deploy to NuxtHub" + runs-on: ubuntu-latest + permissions: + contents: read + id-token: write + + steps: + - uses: actions/checkout@v4 + + - name: Enable Corepack + run: corepack enable + + - name: Install Node.js + uses: actions/setup-node@v4 + with: + node-version: 22 + cache: 'npm' + + - name: Install dependencies + run: npm install + + - name: Ensure NuxtHub module is installed + run: npx nuxthub@latest ensure + + - name: Build & Deploy to NuxtHub + uses: nuxt-hub/action@v2 + with: + project-key: kazusan-web-nux-p7mk diff --git a/app/components/app/TopNav.vue b/app/components/app/TopNav.vue index 76cae01..45e7698 100644 --- a/app/components/app/TopNav.vue +++ b/app/components/app/TopNav.vue @@ -3,7 +3,7 @@