Skip to content

Remove logs

Remove logs #23

Workflow file for this run

name: Deploy to Github Pages
on:
push:
branches: ["main"]
workflow_dispatch:
concurrency:
group: "pages"
cancel-in-progress: true
env:
NUXT_PUBLIC_API_URL: ${{ vars.NUXT_PUBLIC_API_URL }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
cache: npm
- name: Write commit sha into environment
run: |
echo "NUXT_PUBLIC_VERSION=${{ github.sha }}" >> ${GITHUB_ENV}
- name: Restore cache
uses: actions/cache@v4
with:
path: |
.output/public
.nuxt
key: ${{ runner.os }}-nuxt-build-${{ hashFiles('.output/public') }}
restore-keys: |
${{ runner.os }}-nuxt-build-
- name: Install dependencies
run: npm ci
- name: Static HTML export with Nuxt
run: npm run generate
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./.output/public
deploy:
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4