-
-
Notifications
You must be signed in to change notification settings - Fork 3
45 lines (37 loc) · 1.11 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
name: Deploy
on:
push:
pull_request:
branches: main
paths:
- website/**
- .github/workflows/deploy.yml
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
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 pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Build qwik-sonner
run: "pnpm install --no-frozen-lockfile && pnpm run build"
- name: Build website
run: "pnpm install --no-frozen-lockfile && pnpm run build"
working-directory: ./website
- name: Upload to Deno Deploy
uses: denoland/deployctl@v1
with:
project: "qwik-sonner"
entrypoint: "https://deno.land/[email protected]/http/file_server.ts" # 📝 Update the entrypoint if necessary
root: "./website/dist" # 📝 Update the root if necessary