Skip to content

Commit

Permalink
commit yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
kemalgencay committed Jan 24, 2024
1 parent 17e4f4c commit 74e0c86
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Deploy

on: push

jobs:
deploy:
runs-on: ubuntu-latest

permissions:
id-token: write # This is required to allow the GitHub Action to authenticate with Deno Deploy.
contents: read

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

- name: Deploy to Deno Deploy
uses: denoland/deployctl@v1
with:
project: kemal # the name of the project on Deno Deploy
entrypoint: main.ts # the entrypoint to deploy

0 comments on commit 74e0c86

Please sign in to comment.