deno-deploy-example/.github/workflows/deploy.yaml

28 lines
490 B
YAML

name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Deploy
uses: samtherapy/deno-deploy@master
with:
deno_deploy_token: ${{ secrets.DENO_DEPLOY_TOKEN }}
entry-point: server/main.ts
project: github-actions-deploy
production: true
env:
ENTRYPOINT: server/main.ts