Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Deploy
on:
push:
branches: [main]
branches: main
pull_request:
branches: main

Expand All @@ -21,15 +21,16 @@ jobs:
- name: Install Deno
uses: denoland/setup-deno@v2
with:
deno-version: rc
deno-version: v2.x

- name: Build step
working-directory: ./www
run: "deno task build" # 📝 Update the build command(s) if necessary
run: "deno task build"

- name: Upload to Deno Deploy
uses: denoland/deployctl@v1
with:
project: "fresh" # 📝 Update the deploy project name if necessary
entrypoint: "./www/main.ts" # 📝 Update the entrypoint if necessary
project: "drcklinn"
entrypoint: "main.tsx"
root: "."


Loading