Skip to content

Commit

Permalink
Publish blog example to Deno Deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlia committed Mar 2, 2024
1 parent fb26824 commit 9595a94
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,18 @@ jobs:
- if: github.ref_type == 'tag'
run: '[[ "$(jq .version deno.json)" = "$GITHUB_REF_NAME" ]]'
- run: deno task publish

publish-examples-blog:
needs: [test, lint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- run: deno task codegen
- uses: denoland/deployctl@v1
with:
project: fedify-blog
entrypoint: ./examples/blog/main.ts
root: .

0 comments on commit 9595a94

Please sign in to comment.