-
Notifications
You must be signed in to change notification settings - Fork 0
85 lines (69 loc) · 1.95 KB
/
deploy.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
name: Deploy Apps
on:
push:
branches: main
pull_request:
branches: main
jobs:
deploy_fe:
name: Deploy Frontend
runs-on: ubuntu-latest
env:
VITE_API_URL: https://api.naijastars.dev/v1
permissions:
id-token: write # Needed for auth with Deno Deploy
contents: read # Needed to clone the repository
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install step
run: 'deno install'
- name: Build step
run: 'deno task fe:build'
- name: Upload to Deno Deploy
uses: denoland/deployctl@v1
with:
project: 'naijastars'
entrypoint: 'vite_server.ts'
root: '.'
deploy_api:
name: Deploy API
runs-on: ubuntu-latest
env:
NODE_ENV: 'production'
DATABASE_URL: ${{ secrets.DATABASE_URL }}
GITHUB_TOKEN: ${{ secrets.API_GITHUB_TOKEN }}
UPSTASH_REDIS_REST_URL: ${{ secrets.UPSTASH_REDIS_REST_URL }}
UPSTASH_REDIS_REST_TOKEN: ${{ secrets.UPSTASH_REDIS_REST_TOKEN }}
permissions:
id-token: write # Needed for auth with Deno Deploy
contents: read # Needed to clone the repository
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install step
run: 'deno install'
- name: Build step
run: 'deno task fe:build'
- name: Upload to Deno Deploy
uses: denoland/deployctl@v1
with:
project: 'naijastars-api'
entrypoint: 'main.ts'
root: '.'