Skip to content

ci: set working directory to front folder #6

ci: set working directory to front folder

ci: set working directory to front folder #6

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: ./frontend
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install dependencies for environment with asdf in .tool-versions
uses: asdf-vm/actions/install@v2
- name: See node version
run: node -v
- name: list files inside frontend folder
run: ls -a
- name: Install dependencies
run: npm install
- name: Build Nuxt.js
run: npm run generate
- name: Deploy to GitHub Pages
run: |
git config user.name "GitHub Actions"
git config user.email "[email protected]"
git checkout --orphan gh-pages
git rm -rf .
mv dist/* .
git add .
git commit -m "Deploy Nuxt.js to GitHub Pages"
git push -f origin gh-pages