Skip to content

Commit

Permalink
Removes spurious doc build
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Solomon committed Apr 6, 2023
1 parent d173cec commit 10aa831
Showing 1 changed file with 34 additions and 34 deletions.
68 changes: 34 additions & 34 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,40 +72,40 @@ jobs:
# cd ../../..
# - name: deploy to netlify
# run: NETLIFY_SITE_ID=${{ secrets.NETLIFY_SITE_ID }} NETLIFY_AUTH_TOKEN=${{ secrets.NETLIFY_AUTH_TOKEN }} netlify deploy --dir=./examples/docs/Static --prod
- name: Make index.html for github
run: |
cd examples/docs/Static
mkdir -p intro
echo '{"page":"Intro","slug":"/purescript-deku/","top":true}' > config.json
node make.mjs config.json > index.html
mkdir -p hello
echo '{"page":"HelloWorld","slug":"/purescript-deku/","top":false}' > config.json
node make.mjs config.json > hello/index.html
mkdir -p simple
echo '{"page":"SimpleComponent","slug":"/purescript-deku/","top":false}' > config.json
node make.mjs config.json > simple/index.html
mkdir -p pursx1
echo '{"page":"PURSX1","slug":"/purescript-deku/","top":false}' > config.json
node make.mjs config.json > pursx1/index.html
mkdir -p pursx2
echo '{"page":"PURSX2","slug":"/purescript-deku/","top":false}' > config.json
node make.mjs config.json > pursx2/index.html
mkdir -p events1
echo '{"page":"Events","slug":"/purescript-deku/","top":false}' > config.json
node make.mjs config.json > events1/index.html
mkdir -p effects
echo '{"page":"Effects","slug":"/purescript-deku/","top":false}' > config.json
node make.mjs config.json > effects/index.html
mkdir -p events2
echo '{"page":"Events2","slug":"/purescript-deku/","top":false}' > config.json
node make.mjs config.json > events2/index.html
mkdir -p portals
echo '{"page":"Portals","slug":"/purescript-deku/","top":false}' > config.json
node make.mjs config.json > portals/index.html
mkdir -p ssr
echo '{"page":"SSR","slug":"/purescript-deku/","top":false}' > config.json
node make.mjs config.json > ssr/index.html
cd ../../..
# - name: Make index.html for github
# run: |
# cd examples/docs/Static
# mkdir -p intro
# echo '{"page":"Intro","slug":"/purescript-deku/","top":true}' > config.json
# node make.mjs config.json > index.html
# mkdir -p hello
# echo '{"page":"HelloWorld","slug":"/purescript-deku/","top":false}' > config.json
# node make.mjs config.json > hello/index.html
# mkdir -p simple
# echo '{"page":"SimpleComponent","slug":"/purescript-deku/","top":false}' > config.json
# node make.mjs config.json > simple/index.html
# mkdir -p pursx1
# echo '{"page":"PURSX1","slug":"/purescript-deku/","top":false}' > config.json
# node make.mjs config.json > pursx1/index.html
# mkdir -p pursx2
# echo '{"page":"PURSX2","slug":"/purescript-deku/","top":false}' > config.json
# node make.mjs config.json > pursx2/index.html
# mkdir -p events1
# echo '{"page":"Events","slug":"/purescript-deku/","top":false}' > config.json
# node make.mjs config.json > events1/index.html
# mkdir -p effects
# echo '{"page":"Effects","slug":"/purescript-deku/","top":false}' > config.json
# node make.mjs config.json > effects/index.html
# mkdir -p events2
# echo '{"page":"Events2","slug":"/purescript-deku/","top":false}' > config.json
# node make.mjs config.json > events2/index.html
# mkdir -p portals
# echo '{"page":"Portals","slug":"/purescript-deku/","top":false}' > config.json
# node make.mjs config.json > portals/index.html
# mkdir -p ssr
# echo '{"page":"SSR","slug":"/purescript-deku/","top":false}' > config.json
# node make.mjs config.json > ssr/index.html
# cd ../../..
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
Expand Down

0 comments on commit 10aa831

Please sign in to comment.