From db26eaa87a5255fbae9415a9f7d5a2d91d1a185a Mon Sep 17 00:00:00 2001 From: alonbalbuena Date: Sat, 9 Sep 2023 13:41:17 +0200 Subject: [PATCH] ci: deploy frontend to github pages --- .github/workflows/publish-github-pages.yml | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/publish-github-pages.yml diff --git a/.github/workflows/publish-github-pages.yml b/.github/workflows/publish-github-pages.yml new file mode 100644 index 0000000..3627054 --- /dev/null +++ b/.github/workflows/publish-github-pages.yml @@ -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 "actions@github.com" + 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