We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aafa534 commit 0bb2b87Copy full SHA for 0bb2b87
.github/workflows/gh-pages.yml
@@ -16,11 +16,14 @@ jobs:
16
with:
17
deno-version: v1.2.3
18
19
- - name: Install pagic
20
- run: deno install --unstable --allow-read --allow-write --allow-net -n pagic https://deno.land/x/pagic@v0.8.4/mod.ts
21
-
22
- name: Build gh-pages
23
- run: pagic build
+ run: |
+ curl -fsSL https://deno.land/x/install/install.sh | sh
+ export DENO_INSTALL="/home/runner/.deno"
+ export PATH="$DENO_INSTALL/bin:$PATH"
24
+ deno --version
25
+ deno install --unstable --allow-read --allow-write --allow-net -n pagic https://deno.land/x/pagic@v0.8.4/mod.ts
26
+ pagic build
27
28
- name: Deploy gh-pages
29
uses: peaceiris/actions-gh-pages@v3
0 commit comments