Skip to content

Commit 6c0aeab

Browse files
committed
Adjust workflow to not render the README
1 parent f2d1b91 commit 6c0aeab

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/pages.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,16 @@ jobs:
4646
~/.local/share/racket
4747
key: ${{ runner.os }}-racket-current-${{ hashFiles('.racket-version') }}
4848
- run: raco pkg install --auto --skip-installed pollen string-interpolation
49+
- run: mkdir output
4950
- run: raco pollen render
50-
- run: raco pollen reset
51+
- run: cp -r assets *.html *.css output
5152
- name: Setup Pages
5253
uses: actions/configure-pages@v2
5354
- name: Upload artifact
5455
uses: actions/upload-pages-artifact@v1
5556
with:
56-
# Upload entire repository
57-
path: '.'
57+
# Upload ./output only
58+
path: './output'
5859
- name: Deploy to GitHub Pages
5960
id: deployment
6061
uses: actions/deploy-pages@v1

0 commit comments

Comments
 (0)