Skip to content

Commit

Permalink
Merge pull request #3 from andreluciani/feat/multiple-pages-deploy
Browse files Browse the repository at this point in the history
Refatoração: Deploy de várias páginas
  • Loading branch information
andreluciani authored Aug 10, 2023
2 parents 083d64e + 5a92493 commit ac7a426
Show file tree
Hide file tree
Showing 12 changed files with 463 additions and 265 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ jobs:
UMAMI_WEBSITE_ID: ${{ vars.UMAMI_WEBSITE_ID }}

- name: Build
run: slidev build --base /${{ github.event.repository.name }}/
run: |
slidev build --base /${{ github.event.repository.name }}/
/bin/ls pages | while read line ; do cp "$PWD/pages/$line/$line.md" slides_tmp.md && slidev build slides_tmp.md --base "/${{ github.event.repository.name }}/$line" -o "../../dist/$line" && rm slides_tmp.md ; done
- uses: actions/configure-pages@v3

Expand Down
1 change: 0 additions & 1 deletion components/DrauuConfig.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ window.addEventListener('keydown', (e) => {
}
else if (e.code === 'Minus' && (e.ctrlKey || e.metaKey)) {
if (!drauuOptions.brush) {
console.log("Oh no... brush not defined")
return
}
if (drauuOptions.brush.size > 0.5) {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
42 changes: 0 additions & 42 deletions layouts/two-cols-center.vue

This file was deleted.

113 changes: 0 additions & 113 deletions pages/01-introducao/introducao-2.md

This file was deleted.

102 changes: 0 additions & 102 deletions pages/01-introducao/introducao.md

This file was deleted.

Loading

0 comments on commit ac7a426

Please sign in to comment.