-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (46 loc) · 1.65 KB
/
template.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Build template and deploy to vercel
on: push
jobs:
yarn_build:
name: Build template
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: jojomatik/nuxt-3-base
- uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install dependencies and correct version of nuxt-bundle
run: yarn add ${{ github.repository }}#${{ github.ref }}
- name: Build
run: yarn build
- name: Lint
run: yarn lint
vercel_deploy:
name: Deploy template
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: jojomatik/nuxt-3-base
- uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Install dependencies and correct version of nuxt-bundle
run: yarn add ${{ github.repository }}#${{ github.ref }}
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
env:
NITRO_PRESET: vercel
NUXT_IMAGE_PROVIDER: vercel
- name: Deploy Project Artifacts to Vercel (Preview)
if: github.ref != 'refs/heads/main'
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel (Prod)
if: github.ref == 'refs/heads/main'
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}