From 74e0c86529fec96f5fb2c1dcc037231abc9cc13d Mon Sep 17 00:00:00 2001 From: Kemal Gencay Date: Wed, 24 Jan 2024 21:18:38 +0300 Subject: [PATCH] commit yaml --- deploy.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 deploy.yaml diff --git a/deploy.yaml b/deploy.yaml new file mode 100644 index 0000000..1087136 --- /dev/null +++ b/deploy.yaml @@ -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 \ No newline at end of file