Skip to content

Commit 302ee71

Browse files
committed
fix: versioning
1 parent c2ac798 commit 302ee71

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
export PATH="$DENO_INSTALL/bin:$PATH"
2525
deno --version
2626
deno run --allow-net --allow-write --allow-read --allow-env ./mod.ts -u $USERNAME -t $TOKEN -f markdown
27-
deno install --unstable --allow-read --allow-write --allow-net -n pagic https://deno.land/x/gagic@v0.9.2/mod.ts
27+
deno install --unstable --allow-read --allow-write --allow-net -n pagic https://deno.land/x/gagic@0.9.2/mod.ts
2828
gagic build
2929
env:
3030
USERNAME: ${{ secrets.USERNAME }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ After processing according to the ranking logic below, limit to only the necessa
5454

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

6060
## Plan

deps.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,7 @@ export {
2323
export { coffee };
2424

2525
// Test dependencies
26-
export { assert, assertEquals } from "https://deno.land/std@0.70.0/testing/asserts.ts";
26+
export {
27+
assert,
28+
assertEquals,
29+
} from "https://deno.land/std@0.70.0/testing/asserts.ts";

0 commit comments

Comments
 (0)