Skip to content

Commit

Permalink
log
Browse files Browse the repository at this point in the history
  • Loading branch information
Tommytrg committed Jul 19, 2024
1 parent 0936c40 commit 654b9e9
Showing 1 changed file with 17 additions and 18 deletions.
35 changes: 17 additions & 18 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Deploy

env:
DEBUG: 'vite:*'
# env:
# DEBUG: 'vite:*'

on:
# Runs on pushes targeting the default branch
Expand Down Expand Up @@ -38,25 +38,24 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20
# cache: 'pnpm'
cache: 'pnpm'

# - name: Setup Pages
# uses: actions/configure-pages@v5
# with:
# Automatically inject router.base in your Nuxt configuration file and set
# target to static (https://nuxtjs.org/docs/configuration-glossary/configuration-target/).
#
# You may remove this line if you want to manage the configuration yourself.
# static_site_generator: nuxt
# - name: Restore cache
# uses: actions/cache@v4
# uses: actions/configure-pages@v5
# with:
# path: |
# dist
# .nuxt
# key: ${{ runner.os }}-nuxt-build-${{ hashFiles('dist') }}
# restore-keys: |
# ${{ runner.os }}-nuxt-build-
# Automatically inject router.base in your Nuxt configuration file and set
# target to static (https://nuxtjs.org/docs/configuration-glossary/configuration-target/).

# You may remove this line if you want to manage the configuration yourself.
- name: Restore cache
uses: actions/cache@v4
with:
path: |
dist
.nuxt
key: ${{ runner.os }}-nuxt-build-${{ hashFiles('dist') }}
restore-keys: |
${{ runner.os }}-nuxt-build-
- name: Install dependencies
run: pnpm install --frozen-lockfile

Expand Down

0 comments on commit 654b9e9

Please sign in to comment.