-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (33 loc) · 779 Bytes
/
ci.yaml
File metadata and controls
41 lines (33 loc) · 779 Bytes
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
name: Build
on:
pull_request:
branches:
- dev
types:
- closed
push:
branches:
- dev
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install Dependencies
run: npm install
- name: Build Project
env:
VITE_EMAIL_API_KEY: ${{ secrets.VITE_EMAIL_API_KEY }}
run: npm run build
- name: Upload artifact to enable deployment
uses: actions/upload-artifact@v4
with:
name: production-files
path: ./dist