Skip to content

Commit

Permalink
ci: add deploy ci
Browse files Browse the repository at this point in the history
  • Loading branch information
m1sk9 committed Jul 19, 2024
1 parent 986c989 commit 5f72ad6
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -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

1 comment on commit 5f72ad6

@deno-deploy
Copy link

@deno-deploy deno-deploy bot commented on 5f72ad6 Jul 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Failed to deploy:

UNCAUGHT_EXCEPTION

NotFound: No such file or directory (os error 2): stat '/src/posts'
    at async Object.stat (ext:deno_fs/30_fs.js:420:15)
    at async createWalkEntry (https://deno.land/[email protected]/fs/_util.ts:83:16)
    at async walk (https://deno.land/[email protected]/fs/walk.ts:98:11)
    at async loadContent (https://deno.land/x/[email protected]/blog.tsx:198:20)
    at async configureBlog (https://deno.land/x/[email protected]/blog.tsx:188:3)
    at async blog (https://deno.land/x/[email protected]/blog.tsx:110:21)

Please sign in to comment.