Skip to content

Commit

Permalink
ci: deploy frontend to github pages
Browse files Browse the repository at this point in the history
  • Loading branch information
alonbalbuena committed Sep 9, 2023
1 parent 4ca1979 commit db26eaa
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/publish-github-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Deploy to GitHub Pages

on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest

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: Go inside frontend folder
run: cd ./frontend && ls

- 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

0 comments on commit db26eaa

Please sign in to comment.