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 f2d1b91 commit 6c0aeabCopy full SHA for 6c0aeab
.github/workflows/pages.yml
@@ -46,15 +46,16 @@ jobs:
46
~/.local/share/racket
47
key: ${{ runner.os }}-racket-current-${{ hashFiles('.racket-version') }}
48
- run: raco pkg install --auto --skip-installed pollen string-interpolation
49
+ - run: mkdir output
50
- run: raco pollen render
- - run: raco pollen reset
51
+ - run: cp -r assets *.html *.css output
52
- name: Setup Pages
53
uses: actions/configure-pages@v2
54
- name: Upload artifact
55
uses: actions/upload-pages-artifact@v1
56
with:
- # Upload entire repository
57
- path: '.'
+ # Upload ./output only
58
+ path: './output'
59
- name: Deploy to GitHub Pages
60
id: deployment
61
uses: actions/deploy-pages@v1
0 commit comments