Skip to content

Update nuxtjs.yml

Update nuxtjs.yml #3

Workflow file for this run

# Sample workflow for building and deploying a Nuxt site to GitHub Pages
#
# To get started with Nuxt see: https://nuxtjs.org/docs/get-started/installation
#
name: Deploy Nuxt site to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
cache: ${{ steps.detect-package-manager.outputs.manager }}
- name: Install dependencies
run: cd src && npm install
- name: Static HTML export with Nuxt
run: npm run deploy
- name: Build Vue
run: |
cd .output
git config --global user.email "[email protected]"
git config --global user.name "CI"
git init
git add -A
git commit -m 'deploy'
git push -f https://${{ vars.username }}:${{ secrets.token }}@github.com/${{ vars.username }}/TriCityTrim.git master:builds