Skip to content

Commit

Permalink
github action yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sokmontrey committed Dec 30, 2024
1 parent cff68ca commit 90d5755
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Deploy
on:
push:
branches: master
pull_request:
branches: master

jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest

steps:
- name: Clone repository
uses: actions/checkout@v4

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

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

0 comments on commit 90d5755

Please sign in to comment.