Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: ci

on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]

jobs:
test:
Expand All @@ -14,9 +14,9 @@ jobs:
uses: actions/checkout@v4

- name: Setup deno
uses: denoland/setup-deno@v1
uses: denoland/setup-deno@v2
with:
deno-version: v1.x
deno-version: v2.x

- name: Run fmt
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Deploy

on:
push:
branches: [ main ]
branches: [main]
workflow_dispatch:

permissions:
Expand All @@ -17,10 +17,10 @@ jobs:
uses: actions/checkout@v4

- name: Setup deno
uses: denoland/setup-deno@v1
uses: denoland/setup-deno@v2
with:
deno-version: v1.x
deno-version: v2.x

- name: Build
run: deno task build

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ Pulsate の開発情報などを発信するブログ.
```markdown
---
title: The example post
date: '2023-09-10'
date: "2023-09-10"
author: Sho Sakuma
tags:
- ActivityPub
comments:
src: 'https://mstdn.mand.io/@m1sk9/0000000'
src: "https://mstdn.mand.io/@m1sk9/0000000"
draft: true
---
```
4 changes: 2 additions & 2 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"lint": "deno lint"
},
"imports": {
"lume/": "https://deno.land/x/lume@v2.2.4/",
"blog/": "https://deno.land/x/lume_theme_simple_blog@v0.15.5/"
"lume/": "https://cdn.jsdelivr.net/gh/lumeland/lume@v3.2.2/",
"blog/": "https://cdn.jsdelivr.net/gh/lumeland/theme-simple-blog@v1.16.2/"
},
"compilerOptions": {
"types": [
Expand Down
Loading
Loading