diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml new file mode 100644 index 0000000..6d77844 --- /dev/null +++ b/.github/workflows/deploy.yaml @@ -0,0 +1,28 @@ +name: ci + +on: + push: + branches: [ main ] + workflow_dispatch: + +permissions: + id-token: write + contents: read + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup deno + uses: denoland/setup-deno@v1 + with: + deno-version: v1.x + + - name: Deploy to Deno Deploy + uses: denoland/deployctl@v1 + with: + project: pulsate-blog + entrypoint: main.ts