Skip to content

Commit

Permalink
add: aot build setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Jabolol committed Aug 27, 2023
1 parent 22993f9 commit b0880c0
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Deploy
on: [push]
on:
push:
branches: [main]
pull_request:
branches: main

jobs:
deploy:
Expand All @@ -12,6 +16,15 @@ jobs:
steps:
- name: Clone repository
uses: actions/checkout@v3

- name: Install Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x

- name: Build step
run: "deno task build"

- name: Upload to Deno Deploy
uses: denoland/deployctl@v1
with:
Expand Down

0 comments on commit b0880c0

Please sign in to comment.