Skip to content

Commit

Permalink
fix: versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshixmk committed Sep 20, 2020
1 parent c2ac798 commit 302ee71
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
export PATH="$DENO_INSTALL/bin:$PATH"
deno --version
deno run --allow-net --allow-write --allow-read --allow-env ./mod.ts -u $USERNAME -t $TOKEN -f markdown
deno install --unstable --allow-read --allow-write --allow-net -n pagic https://deno.land/x/gagic@v0.9.2/mod.ts
deno install --unstable --allow-read --allow-write --allow-net -n pagic https://deno.land/x/gagic@0.9.2/mod.ts
gagic build
env:
USERNAME: ${{ secrets.USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ After processing according to the ranking logic below, limit to only the necessa

## Hosting using Markdown format
``` Shell
$ deno run --unstable --allow-read --allow-write --allow-net https://deno.land/x/gagic@v0.9.2/mod.ts build --serve --watch
$ deno run --unstable --allow-read --allow-write --allow-net https://deno.land/x/gagic@0.9.2/mod.ts build --serve --watch
```

## Plan
Expand Down
5 changes: 4 additions & 1 deletion deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,7 @@ export {
export { coffee };

// Test dependencies
export { assert, assertEquals } from "https://deno.land/std@0.70.0/testing/asserts.ts";
export {
assert,
assertEquals,
} from "https://deno.land/std@0.70.0/testing/asserts.ts";

0 comments on commit 302ee71

Please sign in to comment.